Files
qmi-cloud-tf-modules/databases/azure-rds-mysql/variables.tf
Manuel Romero a468236d3d fixes az mysql
2021-11-22 13:46:45 +01:00

40 lines
749 B
HCL

variable "resource_group_name" {
}
variable "provision_id" {
type = string
description = "(optional) describe your variable"
}
variable "location" {
type = string
description = "(optional) describe your variable"
default = "EAST US"
}
variable "user_id" {
}
variable "admin_login" {
type = string
description = "Login to authenticate to MySQL Server"
default = "qmi"
}
variable "mysql-version" {
type = string
description = "MySQL Server version to deploy"
default = "5.7"
}
variable "mysql-sku-name" {
type = string
description = "MySQL SKU Name"
default = "GP_Gen5_8"
}
variable "mysql-storage" {
type = string
description = "MySQL Storage in MB"
default = "5120"
}