Sha256: 9b3c8d6a69267e9b616fa4253239534b27336e6d511e1c7b08bf4449750329d8

Contents?: true

Size: 1.63 KB

Versions: 90

Compression:

Stored size: 1.63 KB

Contents

<%
  # replace with actual values:
  @subnets = ["subnet-111","subnet-222"]
  @security_groups = ["sg-111"]
%>
# These params are passsed to the corresponding aws-sdk ecs client methods.
# AWS Docs example: https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#run_task-instance_method
#
# Comments left in as examples.
# Uncomment launch_type and network_configuration sections to enable fargate.
#

create_service:
  deployment_configuration:
    maximum_percent: 200
    minimum_healthy_percent: 100
  desired_count: 1
  # launch_type: "FARGATE"
  # network_configuration:
  #   awsvpc_configuration:
  #     subnets: <%%= @subnets.inspect %> # required
  #     security_groups: <%%= @security_groups.inspect %>
  #     assign_public_ip: "ENABLED" # accepts ENABLED, DISABLED

# update service is provide as an example below.  Though it is probably better
# to not add any options to update_service if you are using the ECS console
# to update these settings often.
update_service:
  # force_new_deployment: true
  # deployment_configuration:
  #   maximum_percent: 200
  #   minimum_healthy_percent: 100
  # desired_count: 1
  # launch_type: "FARGATE"
  # network_configuration:
  #   awsvpc_configuration:
  #     subnets: <%%= @subnets.inspect %> # required
  #     security_groups: <%%= @security_groups.inspect %>
  #     assign_public_ip: "ENABLED" # accepts ENABLED, DISABLED

run_task:
  # launch_type: "FARGATE"
  # network_configuration:
  #   awsvpc_configuration:
  #     subnets: <%%= @subnets.inspect %> # required
  #     security_groups: <%%= @security_groups.inspect %>
  #     assign_public_ip: "ENABLED" # accepts ENABLED, DISABLED

Version data entries

90 entries across 90 versions & 1 rubygems

Version Path
ufo-6.3.13 lib/ufo/upgrade/params.yml
ufo-6.3.12 lib/ufo/upgrade/params.yml
ufo-6.3.11 lib/ufo/upgrade/params.yml
ufo-6.3.10 lib/ufo/upgrade/params.yml
ufo-6.3.9 lib/ufo/upgrade/params.yml
ufo-6.3.8 lib/ufo/upgrade/params.yml
ufo-6.3.7 lib/ufo/upgrade/params.yml
ufo-6.3.6 lib/ufo/upgrade/params.yml
ufo-6.3.5 lib/ufo/upgrade/params.yml
ufo-6.3.4 lib/ufo/upgrade/params.yml
ufo-6.3.3 lib/ufo/upgrade/params.yml
ufo-6.3.2 lib/ufo/upgrade/params.yml
ufo-6.3.1 lib/ufo/upgrade/params.yml
ufo-6.3.0 lib/ufo/upgrade/params.yml
ufo-6.2.5 lib/ufo/upgrade/params.yml
ufo-6.2.4 lib/ufo/upgrade/params.yml
ufo-6.2.3 lib/ufo/upgrade/params.yml
ufo-6.2.2 lib/ufo/upgrade/params.yml
ufo-6.2.1 lib/ufo/upgrade/params.yml
ufo-6.2.0 lib/ufo/upgrade/params.yml