Skip to content

Commit

Permalink
AWS uses different notation for /0 of ipv6
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 17, 2024
1 parent c70a21c commit b4d355a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tf/modules/ecs_cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ resource "aws_security_group" "web" {
cidr_blocks = [
"0.0.0.0/0",
]
ipv6_cidr_blocks = ["0::0/0"]
ipv6_cidr_blocks = ["::/0"]
}

tags = var.tags
Expand Down Expand Up @@ -121,7 +121,7 @@ resource "aws_security_group" "container_host" {
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["0::0/0"]
ipv6_cidr_blocks = ["::/0"]
}

tags = var.tags
Expand Down

0 comments on commit b4d355a

Please sign in to comment.