Files
infra/infra/vpc.tf

13 lines
201 B
Terraform
Raw Normal View History

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"
}
}