-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
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
resource/aws_elasticache_replication_group: Make at_rest_encryption_enabled
nullable Bool
#40514
Conversation
…tead of `schema.TypeBool`
…mode` missing from `basic` tests
…ption_enabled` tests
…without setting `transit_encryption_mode`, enable on update, disable on update
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🎉
% make testacc PKG=elasticache TESTS="TestAccElastiCacheReplicationGroup_transitEncryption7x_basic|TestAccElastiCacheReplicationGroup_transitEncryption7x_Enable|TestAccElastiCacheReplicationGroup_transitEncryption7x_Disable|TestAccElastiCacheReplicationGroup_Redis_enableAtRestEncryption|TestAccElastiCacheReplicationGroup_Valkey_disableAtRestEncryption"
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.3 test ./internal/service/elasticache/... -v -count 1 -parallel 20 -run='TestAccElastiCacheReplicationGroup_transitEncryption7x_basic|TestAccElastiCacheReplicationGroup_transitEncryption7x_Enable|TestAccElastiCacheReplicationGroup_transitEncryption7x_Disable|TestAccElastiCacheReplicationGroup_Redis_enableAtRestEncryption|TestAccElastiCacheReplicationGroup_Valkey_disableAtRestEncryption' -timeout 360m
2024/12/12 10:17:22 Initializing Terraform AWS Provider...
--- PASS: TestAccElastiCacheReplicationGroup_Valkey_disableAtRestEncryption (712.52s)
--- PASS: TestAccElastiCacheReplicationGroup_transitEncryption7x_basic (797.36s)
--- PASS: TestAccElastiCacheReplicationGroup_Redis_enableAtRestEncryption (798.75s)
--- PASS: TestAccElastiCacheReplicationGroup_transitEncryption7x_Enable (2083.64s)
--- PASS: TestAccElastiCacheReplicationGroup_transitEncryption7x_Disable (2097.34s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/elasticache 2103.788s
This functionality has been released in v5.82.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Description
Converts
at_rest_encryption_enabled
to nullable Bool so that default oftrue
whenengine
isvalkey
does not cause perpetual diff which triggers replacement.Relations
Closes #39955
References
Output from Acceptance Testing