infra/infra/deprecated/networking/vpc.tf

12 lines
175 B
HCL

resource "aws_vpc" "athens_vpc" {
cidr_block = var.athens_cidr
enable_dns_support = true
enable_dns_hostnames = true
tags = {
Name = "Project Athens VPC"
}
}