Skip to content

Commit

Permalink
[bugfix] aws-ecs-service fix type of cidr_blocks (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarrien authored Sep 27, 2019
1 parent 35c7296 commit b2809c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-ecs-service/alb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ module "alb-sg" {

egress_with_cidr_blocks = var.awsvpc_network_mode ? [] : [
{
cidr_blocks = ["0.0.0.0/0"]
cidr_blocks = "0.0.0.0/0"
rule = "all-all"
},
]
Expand Down

0 comments on commit b2809c4

Please sign in to comment.