Newer
Older
terraform_templates / vpc_with_subnetworks / variables.tf
@Curtis Lewis Curtis Lewis on 23 Jun 518 bytes initial commit vpc_with_subnets

variable "project_id" {
    type        = string
    description = "Project ID"
    default     = "<PROJECT_ID>"
}

variable "region" {
    type        = string
    description = "Region for this config"
    default     = "<REGION>"
}

variable "name" {
    type        = string
    description = "VPC name"
    default     = "<VPC_NAME>"
}

variable "ip_cidr_range" {
    type = list(string)
    description="List of the range of internal address that are woned by this subnetwork"
    default = [ "10.0.1.0/28" ]
}