variable "environment_name" {
  description = "One of dev, qa, prod"
}
variable "owner" {
  description = "The owner's name in lowercase and periods instead of spaces"
}
variable "department" {
  description = "The department who owns this app"
}
variable "service-name" {
  description = "The service name in all lowercase and dashes instead of spaces (e.g. 'app-service-1')"
}
variable "service-name-proper" {
  description = "A properly capitalized and spaced name of the service (e.g. 'App Service 1')"
}
variable "app-service-plan-sku-tier" {
  description = "The SKU tier of the requested app service (e.g. 'Standard', 'Premium')"
}
variable "app-service-plan-sku-size" {
  description = "The SKU size of the requested app service (e.g. 'S1', 'P1V2')"
}
variable "cloudflare-zone-id" {
  description = "The zone ID in Cloudflare you wish to make changes in (can be found by going to the zone's Overview tab on the CF GUI and scrolling down to the far right)"
}
variable "key-vault-secret-id" {
  description = "The URL to the Key Vault secret that contains the certificate"
}
variable "key-vault-name" {
  description = "The name of the Key Vault where the certificate is stored"
}
variable "key-vault-rg" {
  description = "The resource group of the Key Vault where the certificate is stored"
}
variable "key-vault-secret-name" {
  description = "The name of the secret in the Key Vault that contains the certificate"
}