Files
mission-control/terraform/variables.tf
T
2026-07-27 19:21:52 +01:00

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
}