We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've got the module configured with this:
s3_replication_rules = [ { id = "replication-bucket" status = "Enabled" prefix = "/" priority = 5 destination_bucket = module.replication_bucket.bucket_arn delete_marker_replication_status = "Enabled" destination = { account_id = data.aws_caller_identity.current.account_id metrics = { status = "Enabled", event_threshold = { minutes = 15 } }, replication_time = { status = "Enabled", event_threshold = { minutes = 15 } } } } ]
Every time I apply it I get this:
OpenTofu will perform the following actions: # module.backup_bucket.aws_s3_bucket_replication_configuration.default[0] will be updated in-place ~ resource "aws_s3_bucket_replication_configuration" "default" { id = "jdx-stg1-backup" # (2 unchanged attributes hidden) ~ rule { id = "replication-bucket" # (2 unchanged attributes hidden) ~ destination { # (3 unchanged attributes hidden) + encryption_configuration {} # (2 unchanged blocks hidden) } # (2 unchanged blocks hidden) } }
To not re-add the empty encryption_configuration at every apply
encryption_configuration
Apply s3_replication_rules without setting the encryption_configuration
No response
OpenTofu v1.6.2 + provider registry.opentofu.org/hashicorp/aws v5.40.0
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the Bug
I've got the module configured with this:
Every time I apply it I get this:
Expected Behavior
To not re-add the empty
encryption_configuration
at every applySteps to Reproduce
Apply s3_replication_rules without setting the
encryption_configuration
Screenshots
No response
Environment
Additional Context
No response
The text was updated successfully, but these errors were encountered: