This commit is contained in:
Dennis Eikelenboom
2021-09-14 13:15:16 -07:00
parent 2fa2a3f754
commit 505f4238b5
6 changed files with 45 additions and 1 deletions

View File

@ -0,0 +1,28 @@
variable "name" {
type = string
description = "Name of the deployment"
}
variable "environment" {
type = string
description = "Name of the environment"
default = "dev"
}
variable "location" {
type = string
description = "Location of the resources"
default = "East US"
}
variable "vnet_address_space" {
type = list(string)
description = "Address space of the subnet"
default = ["10.0.0.0/16"]
}
variable "subnet_address_space" {
type = list(string)
description = "Address space of the subnet"
default = ["10.0.0.0/24"]
}