-
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
feat: add network_type
and ip_discovery
to ElastiCache replication group
#34019
feat: add network_type
and ip_discovery
to ElastiCache replication group
#34019
Conversation
Community NoteVoting for Prioritization
For Submitters
|
@tophercullen, @kbergha, @otyaglo, @larsboldt - I expect this to be merged fairly quickly 👍🏼 |
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 TESTARGS='-run=TestAccElastiCacheReplicationGroup_ipDiscovery\|TestAccElastiCacheReplicationGroup_networkType' PKG=elasticache ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/elasticache/... -v -count 1 -parallel 2 -run=TestAccElastiCacheReplicationGroup_ipDiscovery\|TestAccElastiCacheReplicationGroup_networkType -timeout 360m
=== RUN TestAccElastiCacheReplicationGroup_ipDiscovery
=== PAUSE TestAccElastiCacheReplicationGroup_ipDiscovery
=== RUN TestAccElastiCacheReplicationGroup_networkType
=== PAUSE TestAccElastiCacheReplicationGroup_networkType
=== CONT TestAccElastiCacheReplicationGroup_ipDiscovery
=== CONT TestAccElastiCacheReplicationGroup_networkType
--- PASS: TestAccElastiCacheReplicationGroup_ipDiscovery (1003.67s)
--- PASS: TestAccElastiCacheReplicationGroup_networkType (1117.06s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/elasticache 1122.299s
% make testacc TESTARGS='-run=TestAccElastiCacheReplicationGroup_basic' PKG=elasticache ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/elasticache/... -v -count 1 -parallel 2 -run=TestAccElastiCacheReplicationGroup_basic -timeout 360m
=== RUN TestAccElastiCacheReplicationGroup_basic
=== PAUSE TestAccElastiCacheReplicationGroup_basic
=== RUN TestAccElastiCacheReplicationGroup_basic_v5
=== PAUSE TestAccElastiCacheReplicationGroup_basic_v5
=== CONT TestAccElastiCacheReplicationGroup_basic
=== CONT TestAccElastiCacheReplicationGroup_basic_v5
--- PASS: TestAccElastiCacheReplicationGroup_basic_v5 (824.96s)
--- PASS: TestAccElastiCacheReplicationGroup_basic (880.89s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/elasticache 886.325s
@bschaatsbergen Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.23.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! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Adds the ip_discovery parameter to elasticache replication group that is now supported on Redis 6.2 and Memcached engine version 1.6.6 on all instances built on the Nitro system.
Relations
Closes #28131
References
API Documentation: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ReplicationGroup.html
Output from Acceptance Testing