Skip to content

Instantly share code, notes, and snippets.

@snassr
Last active October 22, 2023 15:54
Show Gist options
  • Save snassr/36ee506d4170574d52a106bc65a056ff to your computer and use it in GitHub Desktop.
Save snassr/36ee506d4170574d52a106bc65a056ff to your computer and use it in GitHub Desktop.
medium_blog_652A1BBE_awsnetworking_vpc_subnet01_ngw.tf
resource "aws_eip" "awsnetblog_vpc_01-subnet_01_public-ngw_01-eip_01" {
tags = {
"Name" = "awsnetblog_vpc_01-subnet_01_public-ngw_01-eip_01"
"Project" = var.project
}
}
resource "aws_nat_gateway" "awsnetblog_vpc_01-subnet_01_public-ngw_01" {
subnet_id = aws_subnet.awsnetblog_vpc_01-subnet_01_public.id
allocation_id = aws_eip.awsnetblog_vpc_01-subnet_01_public-ngw_01-eip_01.id
tags = {
"Name" = "awsnetblog_vpc_01-subnet_01_public-ngw_01"
"Project" = var.project
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment