Reorder variables

This commit is contained in:
Julio Castillo 2021-10-07 18:25:49 +02:00
parent be60c1ad4f
commit 74f17a51a9
1 changed files with 5 additions and 5 deletions

View File

@ -49,6 +49,11 @@ variable "databases" {
default = null
}
variable "deletion_protection" {
type = bool
default = false
}
variable "disk_size" {
description = "Disk size in GB. Set to null to enable autoresize."
type = number
@ -115,8 +120,3 @@ variable "tier" {
description = "The machine type to use for the instances."
type = string
}
variable "deletion_protection" {
type = bool
default = false
}