Files
infra/infra/gateway.tf
shockrah 8b1d576bfb !+ Creating infra points for internet access on Crete subnet
With this patch members of the Crete subnet will be able to
properly access the outside world which is required for these
services to function as intended.
2021-11-24 21:14:23 -08:00

8 lines
146 B
HCL

resource "aws_internet_gateway" "athens_gateway" {
vpc_id = aws_vpc.athens_vpc.id
tags = {
Name = "Athens Common Internet Gateway"
}
}