Files
aws_terraform/tf/gateway.tf
2024-12-04 14:11:05 +09:00

7 lines
144 B
HCL

resource "aws_internet_gateway" "aws_default_gateway" {
vpc_id = aws_vpc.aws-default-vpc.id
tags = {
Name = "aws_default_gateway"
}
}