From d034cc4863cb5084afbf231082eb388ac7607f81 Mon Sep 17 00:00:00 2001 From: Cari Albritton Date: Tue, 3 Oct 2023 20:29:46 -0400 Subject: [PATCH] multi region default Signed-off-by: Cari Albritton --- examples/env_with_dxe/input.tfvars | 2 +- examples/env_with_dxe/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/env_with_dxe/input.tfvars b/examples/env_with_dxe/input.tfvars index 856a0d5..9bb6a08 100644 --- a/examples/env_with_dxe/input.tfvars +++ b/examples/env_with_dxe/input.tfvars @@ -3,7 +3,7 @@ kaleido_api_key = "" env_name = "test-environment" provider = "pantheon" consensus = "ibft" -multi_region = "false" +multi_region = "true" node_count = 1 block_period = 2 gc_mode = "archive" diff --git a/examples/env_with_dxe/variables.tf b/examples/env_with_dxe/variables.tf index 3363070..6a4f145 100644 --- a/examples/env_with_dxe/variables.tf +++ b/examples/env_with_dxe/variables.tf @@ -23,7 +23,7 @@ variable "consensus" { variable "multi_region" { type = "string" - default = false + default = true description = "Make the environment multi-region compatible to support additional regions, now or in the future" }