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 +}