9 lines
304 B
Terraform
9 lines
304 B
Terraform
|
variable "resource_group" {
|
||
|
description = "The name of the resource group in which to create the virtual network."
|
||
|
}
|
||
|
|
||
|
variable "location" {
|
||
|
description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
|
||
|
default = "southcentralus"
|
||
|
}
|