Skip to content

Instantly share code, notes, and snippets.

@NYARAS
Created November 18, 2021 21:49
Show Gist options
  • Save NYARAS/8022b0cdee071e70fba3cf47a0ca6155 to your computer and use it in GitHub Desktop.
Save NYARAS/8022b0cdee071e70fba3cf47a0ca6155 to your computer and use it in GitHub Desktop.
resource "aws_eip" "nat1" {
#EIP may require IGW to exist prior to association.
# Use depends_on to set an explicit dependency on the IGW.
depends_on = [
aws_internet_gateway.main
]
}
resource "aws_eip" "nat2" {
#EIP may require IGW to exist prior to association.
# Use depends_on to set an explicit dependency on the IGW.
depends_on = [
aws_internet_gateway.main
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment