Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed postgres vars #7

Merged
merged 1 commit into from
Oct 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 0 additions & 85 deletions src/core/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -200,88 +200,3 @@ variable "enable_iac_pipeline" {
description = "If true create the key vault policy to allow used by azure devops iac pipelines."
default = false
}

## Database server postgresl
variable "postgresql_sku_name" {
type = string
description = "Specifies the SKU Name for this PostgreSQL Server."
}

variable "postgresql_geo_redundant_backup_enabled" {
type = bool
default = false
description = "Turn Geo-redundant server backups on/off."
}

variable "postgresql_enable_replica" {
type = bool
default = false
description = "Create a PostgreSQL Server Replica."
}

variable "postgresql_storage_mb" {
type = number
description = "Max storage allowed for a server"
default = 5120
}

variable "postgresql_configuration" {
type = map(string)
description = "PostgreSQL Server configuration"
default = {}
}

variable "postgresql_alerts_enabled" {
type = bool
default = false
description = "Database alerts enabled?"
}

variable "cidr_subnet_postgresql" {
type = list(string)
description = "Address prefixes subnet postgresql"
default = null
}

variable "postgresql_public_network_access_enabled" {
type = bool
default = false
description = "database public"
}

variable "prostgresql_enabled" {
type = bool
default = false
description = "Mock postegres database enable?"
}

variable "postgresql_network_rules" {
description = "Network rules restricting access to the postgresql server."
type = object({
ip_rules = list(string)
allow_access_to_azure_services = bool
})
default = {
ip_rules = []
allow_access_to_azure_services = false
}
}
variable "postgresql_name" {
type = string
default = null
}

variable "postgresql_connection_limit" {
type = number
default = -1 //no limit
}

variable "postgresql_schema" {
type = string
default = null
}

variable "prostgresql_db_mockpsp" {
type = string
default = null
}