Skip to content

Commit

Permalink
fix(infra): change incorrect argument in private route table (#1619)
Browse files Browse the repository at this point in the history
  • Loading branch information
goo314 authored Mar 28, 2024
1 parent 0aaaaa1 commit 1ffe9e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/infra/modules/codedang-infra/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ resource "aws_route_table" "private-ecs" {
vpc_id = aws_vpc.main.id

route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_nat_gateway.nat.id
cidr_block = "0.0.0.0/0"
nat_gateway_id = aws_nat_gateway.nat.id
}

# route {
Expand Down

0 comments on commit 1ffe9e2

Please sign in to comment.