Init repo
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user