terraform-aws-ecs-fargate icon indicating copy to clipboard operation
terraform-aws-ecs-fargate copied to clipboard

Terraform module to create AWS ECS FARGATE services

Results 3 terraform-aws-ecs-fargate issues
Sort by recently updated
recently updated
newest added

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.

enhancement

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!