Skip to content

Commit b2809c4

Browse files
authored
[bugfix] aws-ecs-service fix type of cidr_blocks (#134)
1 parent 35c7296 commit b2809c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-ecs-service/alb.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module "alb-sg" {
102102

103103
egress_with_cidr_blocks = var.awsvpc_network_mode ? [] : [
104104
{
105-
cidr_blocks = ["0.0.0.0/0"]
105+
cidr_blocks = "0.0.0.0/0"
106106
rule = "all-all"
107107
},
108108
]

0 commit comments

Comments
 (0)