variables.tf
Anonymous
plain_text
12/27/2023 8:29 AM
1020 B
18
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