schema: format: openapi: "3.0.0" service_input_type: "LoadBalancedServiceInput" pipeline_input_type: "PipelineInputs" types: LoadBalancedServiceInput: type: object description: "Input properties for a loadbalanced Fargate service" properties: port: type: number description: "The port to route traffic to" default: 80 minimum: 0 maximum: 65535 desired_count: type: number description: "The default number of Fargate tasks you want running" default: 1 minimum: 1 task_size: type: string description: "The size of the task you want to run" enum: ["x-small", "small", "medium", "large", "x-large"] default: "x-small" scope: type: string description: "If the service will be public or private" enum: ["public", "private"] default: "private" image: type: string description: "The name/url of the container image" default: "public.ecr.aws/aws-containers/proton-demo-image:2d7f777" minLength: 1 maxLength: 200 env_vars: type: string description: "The Docker environment variables to use" default: "ENV_NAME_1=ENV_VALUE_1;ENV_NAME_2=ENV_VALUE_2" minLength: 1 maxLength: 200 PipelineInputs: type: object description: "Pipeline input properties" properties: dockerfile: type: string description: "The location of the Dockerfile to build" default: "Dockerfile" minLength: 1 maxLength: 100 unit_test_command: type: string description: "The command to run to unit test the application code" default: "echo 'add your unit test command here'" minLength: 1 maxLength: 200