Files
infra/infra/vpc.tf
shockrah 8f5ff2aff3 ! Baseline Terraform configuration(no EIP yet)
Major components are scripted out here however a
gateway + EIP still need to be configured for full
base level infra "doneness"
2021-11-24 20:44:32 -08:00

13 lines
201 B
HCL

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