2 description = "topmost classification name"
5 variable "environment" {
6 description = "deployment environment of this vpc, e.g. prod, stage, dev"
11 description = "cidr block for this vpc"
14 variable "public_azs" {
16 description = "list of azs to use for public subnets in this vpc (full specification, such as us-east-1a)"
20 variable "private_azs" {
22 description = "list of azs to use for private subnets in this vpc (full specification, such as us-east-1a)"
26 variable "r53_domain_name" {
27 description = "domain name for everything in this vpc"
31 variable "enable_dns_hostnames" {
32 description = "should be true if you want to use private DNS within the VPC"
36 variable "enable_dns_support" {
37 description = "should be true if you want to use private DNS within the VPC"
41 variable "enable_domain_name" {
42 description = "configure dhcp option with r53_domain_name"
46 variable "subnets_offset_public" {
47 description = "start numbering public subnets with this value"
51 variable "subnets_offset_private" {
52 description = "start numbering private subnets with this value"
56 variable "peering_connection_ids" {
58 description = "pcx ids of accepted vpc peerings"
62 variable "ssh_allowed_cidr" {
64 description = "list of additional cidr blocks to allow SSH traffic from"