terraform-aws-ecs-fargate
terraform-aws-ecs-fargate copied to clipboard
Terraform module to create AWS ECS FARGATE services
Suppose we have the following setup: ```terraform resource "aws_lb_listener" "alb_80" { load_balancer_arn = module.alb.arn port = "80" protocol = "HTTP" default_action { type = "forward" target_group_arn = module.fargate.target_group_arn[0] } }...
Is it possible with the current version of code to pass custom security group(s) for ECS Fargate service ? If not could you take this as a feature request.
the module only allow to use target group that the module creates. how can I add a pre-defined target group that I already created with terraform? thanks!