From 9f987e9a7aa9d5277ea99356add518abe0cf8c98 Mon Sep 17 00:00:00 2001 From: Annie Hedgpeth <18335499+anniehedgpeth@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:50:06 -0400 Subject: [PATCH] default consolidated_services_enabled to true (#227) --- tests/private-active-active/variables.tf | 2 +- tests/private-tcp-active-active/variables.tf | 2 +- tests/public-active-active/variables.tf | 2 +- tests/standalone-external/variables.tf | 2 +- tests/standalone-mounted-disk/variables.tf | 2 +- variables.tf | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/private-active-active/variables.tf b/tests/private-active-active/variables.tf index ce3a6e43..b64dcfba 100644 --- a/tests/private-active-active/variables.tf +++ b/tests/private-active-active/variables.tf @@ -7,7 +7,7 @@ variable "bastion_public_ssh_key_secret_name" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." } diff --git a/tests/private-tcp-active-active/variables.tf b/tests/private-tcp-active-active/variables.tf index 888b7cc4..07d6cb20 100644 --- a/tests/private-tcp-active-active/variables.tf +++ b/tests/private-tcp-active-active/variables.tf @@ -17,7 +17,7 @@ variable "ca_key_secret_name" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." } diff --git a/tests/public-active-active/variables.tf b/tests/public-active-active/variables.tf index 5ff4c1d1..ad95df63 100644 --- a/tests/public-active-active/variables.tf +++ b/tests/public-active-active/variables.tf @@ -2,7 +2,7 @@ # SPDX-License-Identifier: MPL-2.0 variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." } diff --git a/tests/standalone-external/variables.tf b/tests/standalone-external/variables.tf index 5eb2833e..6b10eff8 100644 --- a/tests/standalone-external/variables.tf +++ b/tests/standalone-external/variables.tf @@ -8,7 +8,7 @@ variable "bypass_preflight_checks" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." } diff --git a/tests/standalone-mounted-disk/variables.tf b/tests/standalone-mounted-disk/variables.tf index 32b76dea..f9321cba 100644 --- a/tests/standalone-mounted-disk/variables.tf +++ b/tests/standalone-mounted-disk/variables.tf @@ -9,7 +9,7 @@ variable "bypass_preflight_checks" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." } diff --git a/variables.tf b/variables.tf index b6073fd2..914d63f2 100644 --- a/variables.tf +++ b/variables.tf @@ -800,7 +800,7 @@ variable "capacity_memory" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required if var.is_replicated_deployment is true) True if TFE uses consolidated services." }