terraform-aws-ecs-fargate-task-definition
terraform-aws-ecs-fargate-task-definition copied to clipboard
AWS ECS Fargate Task Definition Terraform Module
module "td" { source = "../../" name_prefix = "multiple-containers" containers = [ module.container-definition-1.json_map_object, module.container-definition-2.json_map_object, ] }
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Config Migration Needed - [ ] Select this checkbox to let Renovate create...
Not sure if I'm misunderstanding this module, but I'm trying to use this module with the [ecs-fargate](https://github.com/cn-terraform/terraform-aws-ecs-fargate) module. However, when planning, this module seems to conflict a lot with the...
Currently, the `execution_role_arn` and `task_role_arn` parameters are unnecessarily coupled when both are not provided explicitly:  In particular, if one passes only the `execution_role_arn`, the deployment fails because the internal...
The `multiple-containers` example doesn't work after adding the `additional_containers` variable since it's used as such: ``` resource "aws_ecs_task_definition" "td" { container_definitions = jsonencode(concat(var.additional_containers, [module.container_definition.json_map_object])) ... ``` Only specifying `additional_containers` and...
The current version 1.0.36 uses the input container_cpu and container_memory both for the primary Container Definition (which is required to be configured) as well as the ECS Task definition. This...
Version: `1.0.31` (Not sure if this is addressed somehow in future versions) One use case that is common when spinning up a web application is to use an NGINX reverse...