Files

7 lines
140 B
Terraform
Raw Permalink Normal View History

resource "aws_internet_gateway" "test-env-gw" {
2022-09-30 15:59:36 -05:00
tags = {
"Name" = "tf-gateway-test-env"
}
vpc_id = "${aws_vpc.test-env.id}"
}