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

@@ -197,13 +197,6 @@ variable "project_id" {
type = string
}
variable "stateful_disks" {
description = "Stateful disk configuration applied at the MIG level to all instances, in device name => on permanent instance delete rule as boolean."
type = map(bool)
default = {}
nullable = false
}
variable "stateful_config" {
description = "Stateful configuration for individual instances."
type = map(object({
@@ -223,6 +216,13 @@ variable "stateful_config" {
nullable = false
}
variable "stateful_disks" {
description = "Stateful disk configuration applied at the MIG level to all instances, in device name => on permanent instance delete rule as boolean."
type = map(bool)
default = {}
nullable = false
}
variable "target_pools" {
description = "Optional list of URLs for target pools to which new instances in the group are added."
type = list(string)