Files
qmi-cloud-tf-modules/databases/azure-rds-postgres/variables.tf
Manuel Romero c96e8a5567 some fixes
2022-10-06 10:26:03 +02:00

45 lines
819 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 "subnet_id" {
default = null
}
variable "admin_login" {
type = string
description = "Login to authenticate to PostgreSQL Server"
default = "qmi"
}
variable "postgresql-version" {
type = string
description = "PostgreSQL Server version to deploy"
default = "11"
}
variable "postgresql-sku-name" {
type = string
description = "PostgreSQL SKU Name"
default = "GP_Gen5_8"
}
variable "postgresql-storage" {
type = string
description = "PostgreSQL Storage in MB"
default = "5120"
}
variable "user_id" {
}