Skip to content

Commit

Permalink
target_region is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyhliu committed Nov 13, 2024
1 parent c5116da commit 5c3e7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/cumulus-tf/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
Expand Down Expand Up @@ -484,4 +484,4 @@ variable "default_log_retention_days" {
variable "report_sns_topic_subscriber_arns" {
type = list
default = null
}
}

0 comments on commit 5c3e7ac

Please sign in to comment.