Skip to main content

Component: ecs-service

This component is responsible for creating an ECS service.

Usage

Stack Level: Regional

Here's an example snippet for how to use this component.

# stacks/catalog/ecs-service/defaults.yaml
components:
terraform:
ecs-service/defaults:
metadata:
component: ecs-service
type: abstract
settings:
spacelift:
workspace_enabled: true
vars:
enabled: true
public_lb_enabled: false
ecr_stage_name: mgmt-automation
task:
launch_type: FARGATE
network_mode: awsvpc
desired_count: 1
ignore_changes_desired_count: true
ignore_changes_task_definition: false
assign_public_ip: false
propagate_tags: SERVICE
wait_for_steady_state: true
circuit_breaker_deployment_enabled: true
circuit_breaker_rollback_enabled: true

This will launch a kong service using an ecr image from mgmt-automation account.

NOTE: Usage of ecr_image instead of image.

import:
- catalog/ecs-service/defaults

components:
terraform:
ecs/b2b/kong/service:
metadata:
component: ecs-service
inherits:
- ecs-service/defaults
vars:
name: kong
public_lb_enabled: true
cluster_attributes: [b2b]
containers:
service:
name: "kong-gateway"
ecr_image: kong:latest
map_environment:
KONG_DECLARATIVE_CONFIG: /home/kong/production.yml
port_mappings:
- containerPort: 8000
hostPort: 8000
protocol: tcp
task:
desired_count: 1
task_memory: 512
task_cpu: 256

This will launch a httpd service using an external image from dockerhub

NOTE: Usage of image instead of ecr_image.

# stacks/catalog/ecs-service/httpd.yaml
import:
- catalog/ecs-service/defaults

components:
terraform:
ecs/platform/httpd/service:
metadata:
component: ecs-service
inherits:
- ecs-service/defaults
vars:
enabled: true
name: httpd
public_lb_enabled: true
cluster_attributes: [platform]
containers:
service:
name: "Hello"
image: httpd:2.4
port_mappings:
- containerPort: 80
hostPort: 80
protocol: tcp
command:
- '/bin/sh -c "echo ''<html> <head> <title>Amazon ECS Sample App</title> <style>body {margin-top: 40px; background-color: #333;} </style> </head><body> <div style=color:white;text-align:center> <h1>Amazon ECS Sample App</h1> <h2>Congratulations!</h2> <p>Your application is now running on a container in Amazon ECS.</p> </div></body></html>'' > /usr/local/apache2/htdocs/index.html && httpd-foreground"'
entrypoint: ["sh", "-c"]
task:
desired_count: 1
task_memory: 512
task_cpu: 256

This will launch google's echoserver using an external image from gcr

NOTE: Usage of image instead of ecr_image.

# stacks/catalog/ecs-service/echoserver.yaml
import:
- catalog/ecs-service/defaults

components:
terraform:
ecs/platform/echoserver/service:
metadata:
component: ecs-service
inherits:
- ecs-service/defaults
vars:
enabled: true
name: echoserver
public_lb_enabled: true
cluster_attributes: [platform]
containers:
service:
name: "echoserver"
image: gcr.io/google_containers/echoserver:1.10
port_mappings:
- containerPort: 8080
hostPort: 8080
protocol: tcp
task:
desired_count: 1
task_memory: 512
task_cpu: 256

Requirements

NameVersion
terraform>= 1.0.0
aws= 4.0

Providers

NameVersion
aws= 4.0
templaten/a

Modules

NameSourceVersion
alb_ecs_labelcloudposse/label/null0.25.0
alb_ingresscloudposse/alb-ingress/aws0.24.3
container_definitioncloudposse/ecs-container-definition/aws0.58.1
datadog_configuration../datadog-configuration/modules/datadog_keysn/a
datadog_container_definitioncloudposse/ecs-container-definition/aws0.58.1
datadog_fluent_bit_container_definitioncloudposse/ecs-container-definition/aws0.58.1
datadog_sidecar_logscloudposse/cloudwatch-logs/aws0.6.6
ecs_alb_service_taskcloudposse/ecs-alb-service-task/aws0.66.4
ecs_cloudwatch_autoscalingcloudposse/ecs-cloudwatch-autoscaling/aws0.7.3
ecs_cloudwatch_sns_alarmscloudposse/ecs-cloudwatch-sns-alarms/aws0.12.3
ecs_clustercloudposse/stack-config/yaml//modules/remote-state1.4.1
gha_assume_role../account-map/modules/team-assume-role-policyn/a
gha_role_namecloudposse/label/null0.25.0
iam_roles../account-map/modules/iam-rolesn/a
logscloudposse/cloudwatch-logs/aws0.6.6
rdscloudposse/stack-config/yaml//modules/remote-state1.4.1
roles_to_principals../account-map/modules/roles-to-principalsn/a
thiscloudposse/label/null0.25.0
vanity_aliascloudposse/route53-alias/aws0.13.0
vpccloudposse/stack-config/yaml//modules/remote-state1.4.1

Resources

NameType
aws_iam_policy.defaultresource
aws_iam_role.github_actionsresource
aws_kinesis_stream.defaultresource
aws_iam_policy_document.github_actions_iam_policydata source
aws_iam_policy_document.thisdata source
aws_kms_alias.selecteddata source
aws_route53_zone.selecteddata source
aws_route53_zone.selected_vanitydata source
aws_ssm_parameters_by_path.defaultdata source
template_file.envsdata source

Inputs

NameDescriptionTypeDefaultRequired
additional_tag_mapAdditional key-value pairs to add to each map in tags_as_list_of_maps. Not added to tags or id.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration.
map(string){}no
alb_configurationThe configuration to use for the ALB, specifying which cluster alb configuration to usestring"default"no
attributesID element. Additional attributes (e.g. workers or cluster) to add to id,
in the order they appear in the list. New attributes are appended to the
end of the list. The elements of the list are joined by the delimiter
and treated as a single ID element.
list(string)[]no
autoscaling_dimensionThe dimension to use to decide to autoscalestring"cpu"no
autoscaling_enabledShould this service autoscale using SNS alaramsbooltrueno
chamber_serviceSSM parameter service name for use with chamber. This is used in chamber_format where /$chamber_service/$name/$container_name/$parameter would be the default.string"ecs-service"no
cluster_attributesThe attributes of the cluster name e.g. if the full name is namespace-tenant-environment-dev-ecs-b2b then the cluster_name is ecs and this value should be b2b.list(string)[]no
containersFeed inputs into container definition moduleany{}no
contextSingle object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables as null to use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional_tag_map, which are merged.
any
{
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}
no
cpu_utilization_high_alarm_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on CPU Utilization High Alarm actionlist(string)[]no
cpu_utilization_high_evaluation_periodsNumber of periods to evaluate for the alarmnumber1no
cpu_utilization_high_ok_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on CPU Utilization High OK actionlist(string)[]no
cpu_utilization_high_periodDuration in seconds to evaluate for the alarmnumber300no
cpu_utilization_high_thresholdThe maximum percentage of CPU utilization averagenumber80no
cpu_utilization_low_alarm_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on CPU Utilization Low Alarm actionlist(string)[]no
cpu_utilization_low_evaluation_periodsNumber of periods to evaluate for the alarmnumber1no
cpu_utilization_low_ok_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on CPU Utilization Low OK actionlist(string)[]no
cpu_utilization_low_periodDuration in seconds to evaluate for the alarmnumber300no
cpu_utilization_low_thresholdThe minimum percentage of CPU utilization averagenumber20no
datadog_agent_sidecar_enabledEnable the Datadog Agent Sidecarboolfalseno
datadog_log_method_is_firelensDatadog logs can be sent via cloudwatch logs (and lambda) or firelens, set this to true to enable firelens via a sidecar container for fluentbitboolfalseno
datadog_logging_default_tags_enabledAdd Default tags to all logs sent to Datadogbooltrueno
datadog_logging_tagsTags to add to all logs sent to Datadogmap(string)nullno
datadog_sidecar_containers_logs_enabledEnable the Datadog Agent Sidecar to send logs to aws cloudwatch group, requires datadog_agent_sidecar_enabled to be truebooltrueno
delimiterDelimiter to be used between ID elements.
Defaults to - (hyphen). Set to "" to use no delimiter at all.
stringnullno
descriptor_formatsDescribe additional descriptors to be output in the descriptors output map.
Map of maps. Keys are names of descriptors. Values are maps of the form
{<br/> format = string<br/> labels = list(string)<br/>}
(Type is any so the map values can later be enhanced to provide additional options.)
format is a Terraform format string to be passed to the format() function.
labels is a list of labels, in order, to pass to format() function.
Label values will be normalized before being passed to format() so they will be
identical to how they appear in id.
Default is {} (descriptors output will be empty).
any{}no
domain_nameThe domain name to use as the host header suffixstring""no
ecr_regionThe region to use for the fully qualified ECR image URL. Defaults to the current region.string""no
ecr_stage_nameThe ecr stage (account) name to use for the fully qualified ECR image URL.string"auto"no
enabledSet to false to prevent the module from creating any resourcesboolnullno
environmentID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT'stringnullno
github_actions_allowed_reposA list of the GitHub repositories that are allowed to assume this role from GitHub Actions. For example,
["cloudposse/infra-live"]. Can contain "*" as wildcard.
If org part of repo name is omitted, "cloudposse" will be assumed.
list(string)[]no
github_actions_iam_role_attributesAdditional attributes to add to the role namelist(string)[]no
github_actions_iam_role_enabledFlag to toggle creation of an IAM Role that GitHub Actions can assume to access AWS resourcesboolfalseno
github_oidc_trusted_role_arnsA list of IAM Role ARNs allowed to assume this cluster's GitHub OIDC rolelist(string)[]no
health_check_pathThe destination for the health check requeststring"/health"no
health_check_portThe port to use to connect with the target. Valid values are either ports 1-65536, or traffic-port. Defaults to traffic-portstring"traffic-port"no
iam_policy_enabledIf set to true will create IAM policy in AWSboolfalseno
iam_policy_statementsMap of IAM policy statements to use in the policy. This can be used with or instead of the var.iam_source_json_url.any{}no
id_length_limitLimit id to this many characters (minimum 6).
Set to 0 for unlimited length.
Set to null for keep the existing setting, which defaults to 0.
Does not affect id_full.
numbernullno
import_profile_nameAWS Profile name to use when importing a resourcestringnullno
import_role_arnIAM Role ARN to use when importing a resourcestringnullno
kinesis_enabledEnable Kinesisboolfalseno
kms_key_aliasID of KMS keystring"default"no
label_key_caseControls the letter case of the tags keys (label names) for tags generated by this module.
Does not affect keys of tags passed in via the tags input.
Possible values: lower, title, upper.
Default value: title.
stringnullno
label_orderThe order in which the labels (ID elements) appear in the id.
Defaults to ["namespace", "environment", "stage", "name", "attributes"].
You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present.
list(string)nullno
label_value_caseControls the letter case of ID elements (labels) as included in id,
set as tag values, and output by this module individually.
Does not affect values of tags passed in via the tags input.
Possible values: lower, title, upper and none (no transformation).
Set this to title and set delimiter to "" to yield Pascal Case IDs.
Default value: lower.
stringnullno
labels_as_tagsSet of labels (ID elements) to include as tags in the tags output.
Default is to include all labels.
Tags with empty values will not be included in the tags output.
Set to [] to suppress all generated tags.
Notes:
The value of the name tag, if included, will be the id, not the name.
Unlike other null-label inputs, the initial setting of labels_as_tags cannot be
changed in later chained modules. Attempts to change it will be silently ignored.
set(string)
[
"default"
]
no
lb_catch_allShould this service act as catch all for all subdomain hosts of the vanity domainboolfalseno
logsFeed inputs into cloudwatch logs moduleany{}no
memory_utilization_high_alarm_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on Memory Utilization High Alarm actionlist(string)[]no
memory_utilization_high_evaluation_periodsNumber of periods to evaluate for the alarmnumber1no
memory_utilization_high_ok_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on Memory Utilization High OK actionlist(string)[]no
memory_utilization_high_periodDuration in seconds to evaluate for the alarmnumber300no
memory_utilization_high_thresholdThe maximum percentage of Memory utilization averagenumber80no
memory_utilization_low_alarm_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on Memory Utilization Low Alarm actionlist(string)[]no
memory_utilization_low_evaluation_periodsNumber of periods to evaluate for the alarmnumber1no
memory_utilization_low_ok_actionsA list of ARNs (i.e. SNS Topic ARN) to notify on Memory Utilization Low OK actionlist(string)[]no
memory_utilization_low_periodDuration in seconds to evaluate for the alarmnumber300no
memory_utilization_low_thresholdThe minimum percentage of Memory utilization averagenumber20no
nameID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
This is the only ID element not also included as a tag.
The "name" tag is set to the full id string. There is no tag with the value of the name input.
stringnullno
namespaceID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally uniquestringnullno
regex_replace_charsTerraform regular expression (regex) string.
Characters matching the regex will be removed from the ID elements.
If not set, "/[^a-zA-Z0-9-]/" is used to remove all characters other than hyphens, letters and digits.
stringnullno
regionAWS Regionstringn/ayes
retention_periodLength of time data records are accessible after they are added to the streamstring"48"no
shard_countNumber of shards that the stream will usestring"1"no
shard_level_metricsList of shard-level CloudWatch metrics which can be enabled for the streamlist
[
"IncomingBytes",
"IncomingRecords",
"IteratorAgeMilliseconds",
"OutgoingBytes",
"OutgoingRecords",
"ReadProvisionedThroughputExceeded",
"WriteProvisionedThroughputExceeded"
]
no
stageID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release'stringnullno
stickiness_cookie_durationThe time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds)number86400no
stickiness_enabledBoolean to enable / disable stickiness. Default is truebooltrueno
stickiness_typeThe type of sticky sessions. The only current possible value is lb_cookiestring"lb_cookie"no
stream_modeStream mode details for the Kinesis streamstring"PROVISIONED"no
tagsAdditional tags (e.g. {'BusinessUnit': 'XYZ'}).
Neither the tag keys nor the tag values will be modified by this module.
map(string){}no
taskFeed inputs into ecs_alb_service_task moduleany{}no
task_enabledWhether or not to use the ECS task modulebooltrueno
task_policy_arnsThe IAM policy ARNs to attach to the ECS task IAM rolelist(string)
[
"arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly",
"arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess"
]
no
tenantID element _(Rarely used, not included by default)_. A customer identifier, indicating who this instance of a resource is forstringnullno
use_lbWhether use load balancer for the serviceboolfalseno
use_rds_client_sgUse the RDS client security groupboolfalseno
vanity_aliasThe vanity aliases to use for the public LB.list(string)[]no
vanity_domain_enabledWhether to use the vanity domain alias for the serviceboolfalseno

Outputs

NameDescription
ecs_cluster_arnSelected ECS cluster ARN
environment_mapEnvironment variables to pass to the container, this is a map of key/value pairs, where the key is containerName,variableName
full_domainDomain to respond to GET requests
github_actions_iam_role_arnARN of IAM role for GitHub Actions
github_actions_iam_role_nameName of IAM role for GitHub Actions
lb_arnSelected LB ARN
lb_listener_httpsSelected LB HTTPS Listener
lb_sg_idSelected LB SG ID
logsOutput of cloudwatch logs module
service_imageThe image of the service container
subnet_idsSelected subnet IDs
vpc_idSelected VPC ID
vpc_sg_idSelected VPC SG ID

References