-
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
f/aws_rds_cluster-add-enhanced-monitoring #41002
f/aws_rds_cluster-add-enhanced-monitoring #41002
Conversation
Community NoteVoting for Prioritization
For Submitters
|
b0fefdb
to
72dd639
Compare
72dd639
to
3e64064
Compare
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=TestAccRDSCluster_basic\|TestAccRDSCluster_enhancedMonitoring' PKG=rds
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.5 test ./internal/service/rds/... -v -count 1 -parallel 20 -run=TestAccRDSCluster_basic\|TestAccRDSCluster_enhancedMonitoring -timeout 360m -vet=off
2025/02/05 16:26:30 Initializing Terraform AWS Provider...
=== RUN TestAccRDSCluster_basic
=== PAUSE TestAccRDSCluster_basic
=== RUN TestAccRDSCluster_enhancedMonitoring_enabledToUpdatedMonitoringInterval
=== PAUSE TestAccRDSCluster_enhancedMonitoring_enabledToUpdatedMonitoringInterval
=== RUN TestAccRDSCluster_enhancedMonitoring_enabledToDisabled
=== PAUSE TestAccRDSCluster_enhancedMonitoring_enabledToDisabled
=== RUN TestAccRDSCluster_enhancedMonitoring_disabledToEnabled
=== PAUSE TestAccRDSCluster_enhancedMonitoring_disabledToEnabled
=== CONT TestAccRDSCluster_basic
=== CONT TestAccRDSCluster_enhancedMonitoring_enabledToDisabled
=== CONT TestAccRDSCluster_enhancedMonitoring_enabledToUpdatedMonitoringInterval
=== CONT TestAccRDSCluster_enhancedMonitoring_disabledToEnabled
--- PASS: TestAccRDSCluster_basic (106.78s)
--- PASS: TestAccRDSCluster_enhancedMonitoring_enabledToDisabled (1364.67s)
--- PASS: TestAccRDSCluster_enhancedMonitoring_enabledToUpdatedMonitoringInterval (1365.37s)
--- PASS: TestAccRDSCluster_enhancedMonitoring_disabledToEnabled (1370.12s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rds 1375.681s
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 🚀
@Dansyuqri Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.86.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
This PR adds the
monitoring_interval
andmonitoring_role_arn
input parameters to theaws_rds_cluster
resource. This allows enhanced monitoring to be set at the RDS Cluster level.Relations
Closes #40966
References
See
--monitoring-interval
and--monitoring-role-arn
https://docs.aws.amazon.com/cli/latest/reference/rds/modify-db-cluster.html#options
Output from Acceptance Testing