Skip to content

Commit

Permalink
fix(infra): add tag name into aws eip (#1734)
Browse files Browse the repository at this point in the history
fix: add tag name into aws eip
  • Loading branch information
k1g99 authored Jun 5, 2024
1 parent dc6c2e0 commit 6263cb5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/infra/modules/codedang-infra/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ resource "aws_eip" "nat_eip" {
}

depends_on = [aws_internet_gateway.main]

tags = {
Name = "Codedang-NatEIP"
}
}

resource "aws_subnet" "public_subnet1" {
Expand Down

0 comments on commit 6263cb5

Please sign in to comment.