17 lines
487 B
Terraform
17 lines
487 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"
|
||
|
}
|
||
|
|
||
|
variable "sql_admin" {
|
||
|
description = "The administrator username of the SQL Server."
|
||
|
}
|
||
|
|
||
|
variable "sql_password" {
|
||
|
description = "The administrator password of the SQL Server."
|
||
|
}
|