Skip to content

Commit

Permalink
Fix aws_eip domain instead of vpc for v5
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Nov 15, 2024
1 parent d4d44f3 commit 44389d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ resource "aws_eip" "public_ip" {
for_each = {
for x, values in module.design.instances : x => true if contains(values.tags, "public")
}
vpc = true
domain = "vpc"
network_interface = aws_network_interface.nic[each.key].id
depends_on = [aws_internet_gateway.gw]
tags = {
Expand Down

0 comments on commit 44389d1

Please sign in to comment.