Init repo

This commit is contained in:
Stedoss
2026-07-27 19:21:52 +01:00
commit bb6a1159ec
60 changed files with 8277 additions and 0 deletions
+23
View File
@@ -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
}