shockrah
87f7daed2b
The idea with this is to centralize the variables so that they are easier to find and configure. The old way was scattered and lead to being unclear. There is also much more documentation added with this patch for clarity-sake
12 lines
175 B
HCL
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"
|
|
}
|
|
}
|
|
|