Home

Awesome

<!-- markdownlint-disable -->

<a href="https://cpco.io/homepage"><img src="https://github.com/cloudposse/terraform-aws-ecs-container-definition/blob/main/.github/banner.png?raw=true" alt="Project Banner"/></a><br/> <p align="right"> <a href="https://github.com/cloudposse/terraform-aws-ecs-container-definition/releases/latest"><img src="https://img.shields.io/github/release/cloudposse/terraform-aws-ecs-container-definition.svg?style=for-the-badge" alt="Latest Release"/></a><a href="https://github.com/cloudposse/terraform-aws-ecs-container-definition/commits"><img src="https://img.shields.io/github/last-commit/cloudposse/terraform-aws-ecs-container-definition.svg?style=for-the-badge" alt="Last Updated"/></a><a href="https://slack.cloudposse.com"><img src="https://slack.cloudposse.com/for-the-badge.svg" alt="Slack Community"/></a></p>

<!-- markdownlint-restore --> <!-- ** DO NOT EDIT THIS FILE ** ** This file was automatically generated by the `cloudposse/build-harness`. ** 1) Make all changes to `README.yaml` ** 2) Run `make init` (you only need to do this once) ** 3) Run`make readme` to rebuild this file. ** ** (We maintain HUNDREDS of open source projects. This is how we maintain our sanity.) ** -->

Terraform module to generate well-formed JSON documents that are passed to the aws_ecs_task_definition Terraform resource as container definitions.

[!TIP]

πŸ‘½ Use Atmos with Terraform

Cloud Posse uses atmos to easily orchestrate multiple environments using Terraform. <br/> Works with Github Actions, Atlantis, or Spacelift.

<details> <summary><strong>Watch demo of using Atmos with Terraform</strong></summary> <img src="https://github.com/cloudposse/atmos/blob/master/docs/demo.gif?raw=true"/><br/> <i>Example of running <a href="https://atmos.tools"><code>atmos</code></a> to manage infrastructure from our <a href="https://atmos.tools/quick-start/">Quick Start</a> tutorial.</i> </detalis>

Usage

This module is meant to be used as output only, meaning it will be used to create outputs which are consumed as a parameter by Terraform resources or other modules.

Caution: This module, unlike nearly all other Cloud Posse Terraform modules, does not use terraform-null-label. Furthermore, it has an input named environment which has a completely different meaning than the one in terraform-null-label. Do not call this module with the conventional context = module.this.context. See the documentation below for the usage of environment.

For complete examples, see

For a complete example with automated tests, see examples/complete with bats and Terratest for the example test.

module "container_definition" {
  source = "cloudposse/ecs-container-definition/aws"
  # Cloud Posse recommends pinning every module to a specific version
  # version = "x.x.x"

  container_name  = "geodesic"
  container_image = "cloudposse/geodesic"
}

The output of this module can then be used with one of our other modules.

module "ecs_alb_service_task" {
  source = "cloudposse/ecs-alb-service-task/aws"
  # Cloud Posse recommends pinning every module to a specific version
  # version = "x.x.x"

  # ...
  container_definition_json = module.container_definition.json_map_encoded_list
  # ...
}

[!IMPORTANT] In Cloud Posse's examples, we avoid pinning modules to specific versions to prevent discrepancies between the documentation and the latest released versions. However, for your own projects, we strongly advise pinning each module to the exact version you're using. This practice ensures the stability of your infrastructure. Additionally, we recommend implementing a systematic approach for updating versions to avoid unexpected changes.

<!-- markdownlint-disable -->

Makefile Targets

Available targets:

  help                                Help screen
  help/all                            Display help for all targets
  help/short                          This help short screen
  lint                                Lint terraform code

<!-- markdownlint-restore --> <!-- markdownlint-disable -->

Requirements

NameVersion
<a name="requirement_terraform"></a> terraform>= 1.3.0
<a name="requirement_local"></a> local>= 1.2

Providers

No providers.

Modules

No modules.

Resources

No resources.

Inputs

NameDescriptionTypeDefaultRequired
<a name="input_command"></a> commandThe command that is passed to the containerlist(string)nullno
<a name="input_container_cpu"></a> container_cpuThe number of cpu units to reserve for the container. This is optional for tasks using Fargate launch type and the total amount of container_cpu of all containers in a task will need to be lower than the task-level cpu valuenumber0no
<a name="input_container_definition"></a> container_definitionContainer definition overrides which allows for extra keys or overriding existing keys.<pre>object({<br/> command = optional(list(string))<br/> cpu = optional(number)<br/> dependsOn = optional(list(object({<br/> condition = string<br/> containerName = string<br/> })))<br/> disableNetworking = optional(bool)<br/> dnsSearchDomains = optional(list(string))<br/> dnsServers = optional(list(string))<br/> dockerLabels = optional(map(string))<br/> dockerSecurityOptions = optional(list(string))<br/> entryPoint = optional(list(string))<br/> environment = optional(list(object({<br/> name = string<br/> value = string<br/> })))<br/> environmentFiles = optional(list(object({<br/> type = string<br/> value = string<br/> })))<br/> essential = optional(bool)<br/> extraHosts = optional(list(object({<br/> hostname = string<br/> ipAddress = string<br/> })))<br/> firelensConfiguration = optional(object({<br/> options = optional(map(string))<br/> type = string<br/> }))<br/> healthCheck = optional(object({<br/> command = list(string)<br/> interval = optional(number)<br/> retries = optional(number)<br/> startPeriod = optional(number)<br/> timeout = optional(number)<br/> }))<br/> hostname = optional(string)<br/> image = optional(string)<br/> interactive = optional(bool)<br/> links = optional(list(string))<br/> linuxParameters = optional(object({<br/> capabilities = optional(object({<br/> add = optional(list(string))<br/> drop = optional(list(string))<br/> }))<br/> devices = optional(list(object({<br/> containerPath = string<br/> hostPath = string<br/> permissions = optional(list(string))<br/> })))<br/> initProcessEnabled = optional(bool)<br/> maxSwap = optional(number)<br/> sharedMemorySize = optional(number)<br/> swappiness = optional(number)<br/> tmpfs = optional(list(object({<br/> containerPath = string<br/> mountOptions = optional(list(string))<br/> size = number<br/> })))<br/> }))<br/> logConfiguration = optional(object({<br/> logDriver = string<br/> options = optional(map(string))<br/> secretOptions = optional(list(object({<br/> name = string<br/> valueFrom = string<br/> })))<br/> }))<br/> memory = optional(number)<br/> memoryReservation = optional(number)<br/> mountPoints = optional(list(object({<br/> containerPath = optional(string)<br/> readOnly = optional(bool)<br/> sourceVolume = optional(string)<br/> })))<br/> name = optional(string)<br/> portMappings = optional(list(object({<br/> containerPort = number<br/> hostPort = optional(number)<br/> protocol = optional(string)<br/> name = optional(string)<br/> appProtocol = optional(string)<br/> })))<br/> privileged = optional(bool)<br/> pseudoTerminal = optional(bool)<br/> readonlyRootFilesystem = optional(bool)<br/> repositoryCredentials = optional(object({<br/> credentialsParameter = string<br/> }))<br/> resourceRequirements = optional(list(object({<br/> type = string<br/> value = string<br/> })))<br/> secrets = optional(list(object({<br/> name = string<br/> valueFrom = string<br/> })))<br/> startTimeout = optional(number)<br/> stopTimeout = optional(number)<br/> systemControls = optional(list(object({<br/> namespace = string<br/> value = string<br/> })))<br/> ulimits = optional(list(object({<br/> hardLimit = number<br/> name = string<br/> softLimit = number<br/> })))<br/> user = optional(string)<br/> volumesFrom = optional(list(object({<br/> readOnly = optional(bool)<br/> sourceContainer = string<br/> })))<br/> workingDirectory = optional(string)<br/> })</pre>{}no
<a name="input_container_depends_on"></a> container_depends_onThe dependencies defined for container startup and shutdown. A container can contain multiple dependencies. When a dependency is defined for container startup, for container shutdown it is reversed. The condition can be one of START, COMPLETE, SUCCESS or HEALTHY<pre>list(object({<br/> condition = string<br/> containerName = string<br/> }))</pre>nullno
<a name="input_container_image"></a> container_imageThe image used to start the container. Images in the Docker Hub registry available by defaultstringn/ayes
<a name="input_container_memory"></a> container_memoryThe amount of memory (in MiB) to allow the container to use. This is a hard limit, if the container attempts to exceed the container_memory, the container is killed. This field is optional for Fargate launch type and the total amount of container_memory of all containers in a task will need to be lower than the task memory valuenumbernullno
<a name="input_container_memory_reservation"></a> container_memory_reservationThe amount of memory (in MiB) to reserve for the container. If container needs to exceed this threshold, it can do so up to the set container_memory hard limitnumbernullno
<a name="input_container_name"></a> container_nameThe name of the container. Up to 255 characters ([a-z], [A-Z], [0-9], -, _ allowed)stringn/ayes
<a name="input_disable_networking"></a> disable_networkingWhen this parameter is true, networking is disabled within the container.boolnullno
<a name="input_dns_search_domains"></a> dns_search_domainsContainer DNS search domains. A list of DNS search domains that are presented to the containerlist(string)nullno
<a name="input_dns_servers"></a> dns_serversContainer DNS servers. This is a list of strings specifying the IP addresses of the DNS serverslist(string)nullno
<a name="input_docker_labels"></a> docker_labelsThe configuration options to send to the docker_labelsmap(string)nullno
<a name="input_docker_security_options"></a> docker_security_optionsA list of strings to provide custom labels for SELinux and AppArmor multi-level security systems.list(string)nullno
<a name="input_entrypoint"></a> entrypointThe entry point that is passed to the containerlist(string)nullno
<a name="input_environment"></a> environmentThe environment variables to pass to the container. This is a list of maps. map_environment overrides environment<pre>list(object({<br/> name = string<br/> value = string<br/> }))</pre>nullno
<a name="input_environment_files"></a> environment_filesOne or more files containing the environment variables to pass to the container. This maps to the --env-file option to docker run. The file must be hosted in Amazon S3. This option is only available to tasks using the EC2 launch type. This is a list of maps<pre>list(object({<br/> type = string<br/> value = string<br/> }))</pre>nullno
<a name="input_essential"></a> essentialDetermines whether all other containers in a task are stopped, if this container fails or stops for any reason. Due to how Terraform type casts booleans in json it is required to double quote this valuebooltrueno
<a name="input_extra_hosts"></a> extra_hostsA list of hostnames and IP address mappings to append to the /etc/hosts file on the container. This is a list of maps<pre>list(object({<br/> hostname = string<br/> ipAddress = string<br/> }))</pre>nullno
<a name="input_firelens_configuration"></a> firelens_configurationThe FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_FirelensConfiguration.html<pre>object({<br/> options = optional(map(string))<br/> type = string<br/> })</pre>nullno
<a name="input_healthcheck"></a> healthcheckA map containing command (string), timeout, interval (duration in seconds), retries (1-10, number of times to retry before marking container unhealthy), and startPeriod (0-300, optional grace period to wait, in seconds, before failed healthchecks count toward retries)<pre>object({<br/> command = list(string)<br/> interval = optional(number)<br/> retries = optional(number)<br/> startPeriod = optional(number)<br/> timeout = optional(number)<br/> })</pre>nullno
<a name="input_hostname"></a> hostnameThe hostname to use for your container.stringnullno
<a name="input_interactive"></a> interactiveWhen this parameter is true, this allows you to deploy containerized applications that require stdin or a tty to be allocated.boolnullno
<a name="input_links"></a> linksList of container names this container can communicate with without port mappingslist(string)nullno
<a name="input_linux_parameters"></a> linux_parametersLinux-specific modifications that are applied to the container, such as Linux kernel capabilities. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_LinuxParameters.html<pre>object({<br/> capabilities = optional(object({<br/> add = optional(list(string))<br/> drop = optional(list(string))<br/> }))<br/> devices = optional(list(object({<br/> containerPath = string<br/> hostPath = string<br/> permissions = optional(list(string))<br/> })))<br/> initProcessEnabled = optional(bool)<br/> maxSwap = optional(number)<br/> sharedMemorySize = optional(number)<br/> swappiness = optional(number)<br/> tmpfs = optional(list(object({<br/> containerPath = string<br/> mountOptions = optional(list(string))<br/> size = number<br/> })))<br/> })</pre>nullno
<a name="input_log_configuration"></a> log_configurationLog configuration options to send to a custom log driver for the container. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_LogConfiguration.html<pre>object({<br/> logDriver = string<br/> options = optional(map(string))<br/> secretOptions = optional(list(object({<br/> name = string<br/> valueFrom = string<br/> })))<br/> })</pre>nullno
<a name="input_map_environment"></a> map_environmentThe environment variables to pass to the container. This is a map of string: {key: value}. map_environment overrides environmentmap(string)nullno
<a name="input_map_secrets"></a> map_secretsThe secrets variables to pass to the container. This is a map of string: {key: value}. map_secrets overrides secretsmap(string)nullno
<a name="input_mount_points"></a> mount_pointsContainer mount points. This is a list of maps, where each map should contain containerPath, sourceVolume and readOnly<pre>list(object({<br/> containerPath = optional(string)<br/> readOnly = optional(bool)<br/> sourceVolume = optional(string)<br/> }))</pre>nullno
<a name="input_port_mappings"></a> port_mappingsThe port mappings to configure for the container. This is a list of maps. Each map should contain "containerPort", "hostPort", and "protocol", where "protocol" is one of "tcp" or "udp". If using containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort<pre>list(object({<br/> containerPort = number<br/> hostPort = optional(number)<br/> protocol = optional(string)<br/> name = optional(string)<br/> appProtocol = optional(string)<br/> }))</pre>nullno
<a name="input_privileged"></a> privilegedWhen this variable is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter is not supported for Windows containers or tasks using the Fargate launch type.boolnullno
<a name="input_pseudo_terminal"></a> pseudo_terminalWhen this parameter is true, a TTY is allocated.boolnullno
<a name="input_readonly_root_filesystem"></a> readonly_root_filesystemDetermines whether a container is given read-only access to its root filesystem. Due to how Terraform type casts booleans in json it is required to double quote this valueboolfalseno
<a name="input_repository_credentials"></a> repository_credentialsContainer repository credentials; required when using a private repo. This map currently supports a single key; "credentialsParameter", which should be the ARN of a Secrets Manager's secret holding the credentials<pre>object({<br/> credentialsParameter = string<br/> })</pre>nullno
<a name="input_resource_requirements"></a> resource_requirementsThe type and amount of a resource to assign to a container. The only supported resource is a GPU.<pre>list(object({<br/> type = string<br/> value = string<br/> }))</pre>nullno
<a name="input_secrets"></a> secretsThe secrets to pass to the container. This is a list of maps<pre>list(object({<br/> name = string<br/> valueFrom = string<br/> }))</pre>nullno
<a name="input_start_timeout"></a> start_timeoutTime duration (in seconds) to wait before giving up on resolving dependencies for a containernumbernullno
<a name="input_stop_timeout"></a> stop_timeoutTime duration (in seconds) to wait before the container is forcefully killed if it doesn't exit normally on its ownnumbernullno
<a name="input_system_controls"></a> system_controlsA list of namespaced kernel parameters to set in the container, mapping to the --sysctl option to docker run. This is a list of maps: { namespace = "", value = ""}<pre>list(object({<br/> namespace = string<br/> value = string<br/> }))</pre>nullno
<a name="input_ulimits"></a> ulimitsContainer ulimit settings. This is a list of maps, where each map should contain "name", "hardLimit" and "softLimit"<pre>list(object({<br/> hardLimit = number<br/> name = string<br/> softLimit = number<br/> }))</pre>nullno
<a name="input_user"></a> userThe user to run as inside the container. Can be any of these formats: user, user:group, uid, uid:gid, user:gid, uid:group. The default (null) will use the container's configured USER directive or root if not set.stringnullno
<a name="input_volumes_from"></a> volumes_fromA list of VolumesFrom maps which contain "sourceContainer" (name of the container that has the volumes to mount) and "readOnly" (whether the container can write to the volume)<pre>list(object({<br/> readOnly = optional(bool)<br/> sourceContainer = string<br/> }))</pre>nullno
<a name="input_working_directory"></a> working_directoryThe working directory to run commands inside the containerstringnullno

Outputs

NameDescription
<a name="output_json_map_encoded"></a> json_map_encodedJSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition
<a name="output_json_map_encoded_list"></a> json_map_encoded_listJSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition
<a name="output_json_map_object"></a> json_map_objectJSON map encoded container definition
<a name="output_sensitive_json_map_encoded"></a> sensitive_json_map_encodedJSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)
<a name="output_sensitive_json_map_encoded_list"></a> sensitive_json_map_encoded_listJSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)
<a name="output_sensitive_json_map_object"></a> sensitive_json_map_objectJSON map encoded container definition (sensitive)
<!-- markdownlint-restore -->

Related Projects

Check out these related projects.

[!TIP]

Use Terraform Reference Architectures for AWS

Use Cloud Posse's ready-to-go terraform architecture blueprints for AWS to get up and running quickly.

βœ… We build it together with your team.<br/> βœ… Your team owns everything.<br/> βœ… 100% Open Source and backed by fanatical support.<br/>

<a href="https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-ecs-container-definition&utm_content=commercial_support"><img alt="Request Quote" src="https://img.shields.io/badge/request%20quote-success.svg?style=for-the-badge"/></a>

<details><summary>πŸ“š <strong>Learn More</strong></summary> <br/>

Cloud Posse is the leading DevOps Accelerator for funded startups and enterprises.

Your team can operate like a pro today.

Ensure that your team succeeds by using Cloud Posse's proven process and turnkey blueprints. Plus, we stick around until you succeed.

Day-0: Your Foundation for Success

<a href="https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-ecs-container-definition&utm_content=commercial_support"><img alt="Request Quote" src="https://img.shields.io/badge/request%20quote-success.svg?style=for-the-badge"/></a>

Day-2: Your Operational Mastery

<a href="https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-ecs-container-definition&utm_content=commercial_support"><img alt="Request Quote" src="https://img.shields.io/badge/request%20quote-success.svg?style=for-the-badge"/></a>

</details>

✨ Contributing

This project is under active development, and we encourage contributions from our community.

Many thanks to our outstanding contributors:

<a href="https://github.com/cloudposse/terraform-aws-ecs-container-definition/graphs/contributors"> <img src="https://contrib.rocks/image?repo=cloudposse/terraform-aws-ecs-container-definition&max=24" /> </a>

For πŸ› bug reports & feature requests, please use the issue tracker.

In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.

  1. Review our Code of Conduct and Contributor Guidelines.
  2. Fork the repo on GitHub
  3. Clone the project to your own machine
  4. Commit changes to your own branch
  5. Push your work back up to your fork
  6. Submit a Pull Request so that we can review your changes

NOTE: Be sure to merge the latest changes from "upstream" before making a pull request!

🌎 Slack Community

Join our Open Source Community on Slack. It's FREE for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally sweet infrastructure.

πŸ“° Newsletter

Sign up for our newsletter and join 3,000+ DevOps engineers, CTOs, and founders who get insider access to the latest DevOps trends, so you can always stay in the know. Dropped straight into your Inbox every week β€” and usually a 5-minute read.

πŸ“† Office Hours <a href="https://cloudposse.com/office-hours?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-ecs-container-definition&utm_content=office_hours"><img src="https://img.cloudposse.com/fit-in/200x200/https://cloudposse.com/wp-content/uploads/2019/08/Powered-by-Zoom.png" align="right" /></a>

Join us every Wednesday via Zoom for your weekly dose of insider DevOps trends, AWS news and Terraform insights, all sourced from our SweetOps community, plus a live Q&A that you can’t find anywhere else. It's FREE for everyone!

License

<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=for-the-badge" alt="License"></a>

<details> <summary>Preamble to the Apache License, Version 2.0</summary> <br/> <br/>

Complete license is available in the LICENSE file.

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

  https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
</details>

Trademarks

All other trademarks referenced herein are the property of their respective owners.


Copyright Β© 2017-2024 Cloud Posse, LLC

<a href="https://cloudposse.com/readme/footer/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-ecs-container-definition&utm_content=readme_footer_link"><img alt="README footer" src="https://cloudposse.com/readme/footer/img"/></a>

<img alt="Beacon" width="0" src="https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/terraform-aws-ecs-container-definition?pixel&cs=github&cm=readme&an=terraform-aws-ecs-container-definition"/>