-
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
fix(rds): cluster enabled_cloudwatch_logs_exports doesn't allow iam-db-auth-error #40789
fix(rds): cluster enabled_cloudwatch_logs_exports doesn't allow iam-db-auth-error #40789
Conversation
…b-auth-error There is a new value for aurora-postgresql that is accepted in the `enabled_cloudwatch_logs_exports` field. It looks like this is currently being rolled out and is only available in some regions (can be tested in `us-west-2`). **Output from Acceptance Testing** ``` % make testacc TESTS=TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql PKG=rds make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.23.3 test ./internal/service/rds/... -v -count 1 -parallel 20 -run='TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql' -timeout 360m 2025/01/06 10:04:01 Initializing Terraform AWS Provider... === RUN TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql === PAUSE TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql === CONT TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql --- PASS: TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql (115.64s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/rds 119.716s ``` closes hashicorp#40787
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 TESTARGS='-run=TestAccRDSCluster_EnabledCloudWatchLogsExports_' PKG=rds ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.3 test ./internal/service/rds/... -v -count 1 -parallel 3 -run=TestAccRDSCluster_EnabledCloudWatchLogsExports_ -timeout 360m
2025/01/06 14:07:08 Initializing Terraform AWS Provider...
=== RUN TestAccRDSCluster_EnabledCloudWatchLogsExports_mySQL
=== PAUSE TestAccRDSCluster_EnabledCloudWatchLogsExports_mySQL
=== RUN TestAccRDSCluster_EnabledCloudWatchLogsExports_postgresql
=== PAUSE TestAccRDSCluster_EnabledCloudWatchLogsExports_postgresql
=== RUN TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql
=== PAUSE TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql
=== CONT TestAccRDSCluster_EnabledCloudWatchLogsExports_mySQL
=== CONT TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql
=== CONT TestAccRDSCluster_EnabledCloudWatchLogsExports_postgresql
--- PASS: TestAccRDSCluster_EnabledCloudWatchLogsExports_aurora_postgresql (113.95s)
--- PASS: TestAccRDSCluster_EnabledCloudWatchLogsExports_mySQL (189.28s)
--- PASS: TestAccRDSCluster_EnabledCloudWatchLogsExports_postgresql (1985.87s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rds 1991.225s
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 🚀
@corymhall Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.83.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
There is a new value for aurora-postgresql that is accepted in the
enabled_cloudwatch_logs_exports
field. It looks like this is currently being rolled out and is only available in some regions (can be tested inus-west-2
).Relations
closes #40787
References
Output from Acceptance Testing