resource "aws_internet_gateway" "us-east-tf-gw" { vpc_id = "vpc-0da4f5c6f6db12a12" tags = { Name = "us-east-tf-gw" } } resource "aws_route_table" "us-east-tf-rt-public" { vpc_id = "vpc-0da4f5c6f6db12a12" route { cidr_block = "0.0.0.0/0" gateway_id = "igw-052948fe8f76be6c3" } tags = { Name = "us-east-tf-rt-public" } } resource "aws_route_table_association" "us-east-tf-rt-public-association" { subnet_id = "subnet-0b0627f1af34d5022" route_table_id = "rtb-0286ae2521f3181ab" }