Fix variable/output sort check

This commit is contained in:
Julio Castillo
2022-11-18 17:48:16 +01:00
parent f26e8646a9
commit 2e700db8a7
30 changed files with 416 additions and 407 deletions

View File

@@ -46,7 +46,6 @@ variable "backup_configuration" {
}
}
variable "database_version" {
description = "Database type and version to create."
type = string
@@ -88,6 +87,12 @@ variable "flags" {
default = null
}
variable "ipv4_enabled" {
description = "Add a public IP address to database instance."
type = bool
default = false
}
variable "labels" {
description = "Labels to be attached to all instances."
type = map(string)
@@ -149,9 +154,3 @@ variable "users" {
type = map(string)
default = null
}
variable "ipv4_enabled" {
description = "Add a public IP address to database instance."
type = bool
default = false
}