-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
Add Performance Insights options to aws_rds_cluster
resource
#29415
Add Performance Insights options to aws_rds_cluster
resource
#29415
Conversation
Community NoteVoting for Prioritization
For Submitters
|
aws_rds_cluster
resource
…ions for `aws_rds_cluster` resource
6e57b85
to
582d68d
Compare
# Conflicts: # internal/service/rds/cluster.go # internal/service/rds/cluster_test.go # internal/service/rds/consts.go # website/docs/r/rds_cluster.html.markdown
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 🚀.
% ACCTEST_TIMEOUT=720m make testacc TESTARGS='-run=TestAccRDSCluster_performanceInsights\|TestAccRDSCluster_basic' PKG=rds ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.5 test ./internal/service/rds/... -v -count 1 -parallel 3 -run=TestAccRDSCluster_performanceInsights\|TestAccRDSCluster_basic -timeout 360m
=== RUN TestAccRDSCluster_basic
=== PAUSE TestAccRDSCluster_basic
=== RUN TestAccRDSCluster_performanceInsightsEnabled
=== PAUSE TestAccRDSCluster_performanceInsightsEnabled
=== RUN TestAccRDSCluster_performanceInsightsKMSKeyID
=== PAUSE TestAccRDSCluster_performanceInsightsKMSKeyID
=== RUN TestAccRDSCluster_performanceInsightsRetentionPeriod
=== PAUSE TestAccRDSCluster_performanceInsightsRetentionPeriod
=== CONT TestAccRDSCluster_basic
=== CONT TestAccRDSCluster_performanceInsightsKMSKeyID
=== CONT TestAccRDSCluster_performanceInsightsEnabled
--- PASS: TestAccRDSCluster_basic (155.57s)
=== CONT TestAccRDSCluster_performanceInsightsRetentionPeriod
--- PASS: TestAccRDSCluster_performanceInsightsKMSKeyID (1685.78s)
--- PASS: TestAccRDSCluster_performanceInsightsRetentionPeriod (1836.05s)
--- PASS: TestAccRDSCluster_performanceInsightsEnabled (2139.38s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rds 2144.389s
% ACCTEST_TIMEOUT=720m make testacc TESTARGS='-run=TestAccRDSInstanceAutomatedBackupsReplication_\|TestAccRDSEventCategoriesDataSource_' PKG=rds ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.5 test ./internal/service/rds/... -v -count 1 -parallel 3 -run=TestAccRDSInstanceAutomatedBackupsReplication_\|TestAccRDSEventCategoriesDataSource_ -timeout 720m
=== RUN TestAccRDSEventCategoriesDataSource_basic
=== PAUSE TestAccRDSEventCategoriesDataSource_basic
=== RUN TestAccRDSEventCategoriesDataSource_sourceType
=== PAUSE TestAccRDSEventCategoriesDataSource_sourceType
=== RUN TestAccRDSInstanceAutomatedBackupsReplication_basic
=== PAUSE TestAccRDSInstanceAutomatedBackupsReplication_basic
=== RUN TestAccRDSInstanceAutomatedBackupsReplication_disappears
=== PAUSE TestAccRDSInstanceAutomatedBackupsReplication_disappears
=== RUN TestAccRDSInstanceAutomatedBackupsReplication_retentionPeriod
=== PAUSE TestAccRDSInstanceAutomatedBackupsReplication_retentionPeriod
=== RUN TestAccRDSInstanceAutomatedBackupsReplication_kmsEncrypted
=== PAUSE TestAccRDSInstanceAutomatedBackupsReplication_kmsEncrypted
=== CONT TestAccRDSEventCategoriesDataSource_basic
=== CONT TestAccRDSInstanceAutomatedBackupsReplication_disappears
=== CONT TestAccRDSInstanceAutomatedBackupsReplication_basic
--- PASS: TestAccRDSEventCategoriesDataSource_basic (7.13s)
=== CONT TestAccRDSEventCategoriesDataSource_sourceType
--- PASS: TestAccRDSEventCategoriesDataSource_sourceType (6.63s)
=== CONT TestAccRDSInstanceAutomatedBackupsReplication_kmsEncrypted
--- PASS: TestAccRDSInstanceAutomatedBackupsReplication_disappears (1151.89s)
=== CONT TestAccRDSInstanceAutomatedBackupsReplication_retentionPeriod
--- PASS: TestAccRDSInstanceAutomatedBackupsReplication_kmsEncrypted (1163.13s)
--- PASS: TestAccRDSInstanceAutomatedBackupsReplication_basic (1194.55s)
--- PASS: TestAccRDSInstanceAutomatedBackupsReplication_retentionPeriod (1205.91s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rds 2362.742s
@tedsmitt Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.61.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
This PR adds the following options to the
aws_rds_cluster
resourceperformance_insights_enabled
performance_insights_kms_key_id
performance_insights_retention_period
This option is only valid for Multi-AZ RDS Clusters, and isn't applicable for Aurora.
Relations
Closes #29414
References
docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings
docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.Enabling.html
Output from Acceptance Testing