variable "cidr" { description = "The CIDR Block for the VPC" type = string } variable "name" { description = "The name for the VPC" type = string } variable "tags" { description = "Tags to add to the resource (in addition to global standard tags)" type = map default = { } } # Inherited variable "standard_tags" { type = map } variable "inside_domain" { type = string } variable "aws_region" { type = string } variable "aws_account_id" { type = string } variable "aws_partition" { type = string }