From 5c3e7aca46ba1a4a634b451d4fb6c79ffc5ce4d6 Mon Sep 17 00:00:00 2001 From: jennyhliu Date: Wed, 13 Nov 2024 17:27:08 -0500 Subject: [PATCH] target_region is optional --- example/cumulus-tf/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/cumulus-tf/variables.tf b/example/cumulus-tf/variables.tf index 7f5615a4c64..a74041d392b 100644 --- a/example/cumulus-tf/variables.tf +++ b/example/cumulus-tf/variables.tf @@ -107,7 +107,7 @@ variable "data_persistence_remote_state_config" { } variable "s3_replicator_config" { - type = object({ source_bucket = string, source_prefix = string, target_bucket = string, target_prefix = string, target_region = string }) + type = object({ source_bucket = string, source_prefix = string, target_bucket = string, target_prefix = string, target_region = optiona(string) }) default = null description = "Configuration for the s3-replicator module. Items with prefix of source_prefix in the source_bucket will be replicated to the target_bucket with target_prefix." } @@ -484,4 +484,4 @@ variable "default_log_retention_days" { variable "report_sns_topic_subscriber_arns" { type = list default = null -} \ No newline at end of file +}