From d3b013c18fc709dea8b502dff3ebb5c10532c405 Mon Sep 17 00:00:00 2001 From: anniehedgpeth Date: Wed, 27 Sep 2023 11:27:40 -0600 Subject: [PATCH] default consolidated_services to true --- 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." }