We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
target_group_arn
1 parent f198753 commit 015a490Copy full SHA for 015a490
examples/complete/main.tf
@@ -73,9 +73,9 @@ module "ecs_deployment" {
73
74
load_balancer = [
75
{
76
- target_group_arn = "my-target-group"
77
- container_name = "nginx"
78
- container_port = 80
+ target_group = "my-target-group"
+ container_name = "nginx"
+ container_port = 80
79
}
80
]
81
@@ -129,7 +129,9 @@ module "ecs_deployment" {
129
EOT
130
131
132
- iam_role_ec2_container_service_role_arn = "arn:aws:iam::aws:policy/service-role/AmazonEC2ContainerServiceforEC2Role"
+ iam_role_policy_attachments = [
133
+ "arn:aws:iam::aws:policy/service-role/AmazonEC2ContainerServiceforEC2Role"
134
+ ]
135
136
137
# Capacity Provider
0 commit comments