From 3e526890f479fb503e422fad4d90151ffcf954fc Mon Sep 17 00:00:00 2001 From: Annie Hedgpeth <18335499+anniehedgpeth@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:49:58 -0400 Subject: [PATCH] default consolidated_services to true (#271) --- tests/standalone-external-rhel8-worker/variables.tf | 2 +- tests/standalone-mounted-disk/variables.tf | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/standalone-external-rhel8-worker/variables.tf b/tests/standalone-external-rhel8-worker/variables.tf index bd4e4200..42091b92 100644 --- a/tests/standalone-external-rhel8-worker/variables.tf +++ b/tests/standalone-external-rhel8-worker/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-mounted-disk/variables.tf b/tests/standalone-mounted-disk/variables.tf index bd4e4200..42091b92 100644 --- a/tests/standalone-mounted-disk/variables.tf +++ b/tests/standalone-mounted-disk/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/variables.tf b/variables.tf index 7c6bc8fe..99955377 100644 --- a/variables.tf +++ b/variables.tf @@ -323,7 +323,7 @@ variable "capacity_memory" { } variable "consolidated_services_enabled" { - default = false + default = true type = bool description = "(Required) True if TFE uses consolidated services." }