variable "prefix" {
  description = "The prefix used for all resources in this example"
  default     = "xl"
}

variable "resource_group" {
  description = "A resource group is a collection of resources that share the same lifecycle, permissions, and policies"
}

variable "resource_group_location" {
  description = "The Azure location where all resources in this example should be created"
}

variable "client_id" {
  description = "Service Principal Client ID"
}

variable "client_secret" {
  description = "Service Principal Client secret"
}

variable "subscription_id" {
  description = "Azure Subscription ID to be used for billing"
}

variable "tenant_id" {
  description = "Service Principal Tenant ID"
}

variable "docker_image" {
  description = "Docker image name"
}

variable "docker_image_tag" {
  description = "Docker image tag"
}

{{- if .UseSampleApplication}}
variable "mysql_master_password" {
  description = "MySql master password"
}

variable "mysql_master_username" {
  description = "MySql master username"
  default="mysqladminun"
}

variable "db_name_prefix" {
  description = "MySql DB name prefix"
}
{{- end}}
