variables.tf

 avatar
unknown
plain_text
a year ago
765 B
7
Indexable
variable "resource_group_name" {
  description = "The name of the existing resource group"
}

variable "location" {
  description = "The location of the existing resource group"
}

variable "mysql_server_admin_login" {
  description = "The administrator login for the MySQL server"
}

variable "mysql_server_admin_password" {
  description = "The administrator login password for the MySQL server"
}

variable "mysql_server_name" {
  description = "The name of the MySQL server"
}

variable "mysql_database_name" {
  description = "The name of the MySQL database"
}

variable "app_service_plan_name" {
  description = "The name of the App Service Plan"
}

variable "app_service_name" {
  description = "The name of the App Service"
}
Editor is loading...
Leave a Comment