terraform-azurerm-postgresql/variables.tf

98 строки
3.5 KiB
Terraform
Исходник Обычный вид История

2018-10-10 07:34:38 +03:00
variable "resource_group_name" {
description = "The name of the resource group in which to create the PostgreSQL Server. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
}
variable "location" {
description = "Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
}
variable "server_name" {
description = "Specifies the name of the PostgreSQL Server. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
}
variable "sku_name" {
description = "Specifies the SKU Name for this PostgreSQL Server. The name of the SKU, follows the tier + family + cores pattern (e.g. B_Gen4_1, GP_Gen5_8)."
default = "GP_Gen5_4"
2018-10-10 07:34:38 +03:00
}
variable "storage_mb" {
description = "Max storage allowed for a server. Possible values are between 5120 MB(5GB) and 1048576 MB(1TB) for the Basic SKU and between 5120 MB(5GB) and 4194304 MB(4TB) for General Purpose/Memory Optimized SKUs."
default = 102400
2018-10-10 07:34:38 +03:00
}
variable "backup_retention_days" {
description = "Backup retention days for the server, supported values are between 7 and 35 days."
2018-10-10 07:34:38 +03:00
default = 7
}
variable "geo_redundant_backup_enabled" {
description = "Enable Geo-redundant or not for server backup. Valid values for this property are Enabled or Disabled, not supported for the basic tier."
default = false
2018-10-10 07:34:38 +03:00
}
variable "administrator_login" {
description = "The Administrator Login for the PostgreSQL Server. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
}
variable "administrator_password" {
description = "The Password associated with the administrator_login for the PostgreSQL Server."
2018-10-10 07:34:38 +03:00
}
2018-10-12 01:43:06 +03:00
variable "server_version" {
description = "Specifies the version of PostgreSQL to use. Valid values are 9.5, 9.6, and 10.0. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
default = "9.5"
}
variable "ssl_enforcement_enabled" {
description = "Specifies if SSL should be enforced on connections. Possible values are Enabled and Disabled."
default = true
2018-10-10 07:34:38 +03:00
}
variable "db_names" {
description = "The list of names of the PostgreSQL Database, which needs to be a valid PostgreSQL identifier. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
default = []
}
variable "db_charset" {
description = "Specifies the Charset for the PostgreSQL Database, which needs to be a valid PostgreSQL Charset. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
default = "UTF8"
}
variable "db_collation" {
description = "Specifies the Collation for the PostgreSQL Database, which needs to be a valid PostgreSQL Collation. Note that Microsoft uses different notation - en-US instead of en_US. Changing this forces a new resource to be created."
2018-10-10 07:34:38 +03:00
default = "English_United States.1252"
}
variable "firewall_rule_prefix" {
description = "Specifies prefix for firewall rule names."
2018-10-10 07:34:38 +03:00
default = "firewall-"
}
variable "firewall_rules" {
description = "The list of maps, describing firewall rules. Valid map items: name, start_ip, end_ip."
2018-10-10 07:34:38 +03:00
default = []
}
variable "vnet_rule_name_prefix" {
description = "Specifies prefix for vnet rule names."
2018-10-10 07:34:38 +03:00
default = "postgresql-vnet-rule-"
}
variable "vnet_rules" {
description = "The list of maps, describing vnet rules. Valud map items: name, subnet_id."
2018-10-10 07:34:38 +03:00
default = []
}
2018-12-12 18:52:45 +03:00
variable "tags" {
description = "A map of tags to set on every taggable resources. Empty by default."
type = map(string)
2018-12-12 18:52:45 +03:00
default = {}
}
variable "postgresql_configurations" {
description = "A map with PostgreSQL configurations to enable."
type = map(string)
default = {}
}