24 lines
550 B
Terraform
24 lines
550 B
Terraform
variable "environment" {
|
|
description = "Deployment environment name, used in resource names."
|
|
type = string
|
|
default = "dev"
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Azure region to deploy into."
|
|
type = string
|
|
default = "uksouth"
|
|
}
|
|
|
|
variable "sql_admin_login" {
|
|
description = "Administrator login for the SQL server."
|
|
type = string
|
|
default = "missioncontrol"
|
|
}
|
|
|
|
variable "sql_admin_password" {
|
|
description = "Administrator password for the SQL server."
|
|
type = string
|
|
sensitive = true
|
|
}
|