-
Notifications
You must be signed in to change notification settings - Fork 9.7k
fix: Set s3_prefix to required for aws_cur_report_definition #38446
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: Set s3_prefix to required for aws_cur_report_definition #38446
Conversation
Community NoteVoting for Prioritization
For Submitters
|
Thank you for your contribution! 🚀 Please note that typically Go dependency changes are handled in this repository by dependabot or the maintainers. This is to prevent pull request merge conflicts and further delay reviews of contributions. Remove any changes to the Additional details:
|
2cf75d5
to
99a68d9
Compare
Thank you for your contribution! 🚀 Please note that typically Go dependency changes are handled in this repository by dependabot or the maintainers. This is to prevent pull request merge conflicts and further delay reviews of contributions. Remove any changes to the Additional details:
|
99a68d9
to
dbbd92f
Compare
```console % make testacc PKG=cur TESTS=TestAccCUR_serial/ReportDefinition make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.24.4 test ./internal/service/cur/... -v -count 1 -parallel 20 -run='TestAccCUR_serial/ReportDefinition' -timeout 360m -vet=off 2025/06/17 16:33:42 Creating Terraform AWS Provider (SDKv2-style)... 2025/06/17 16:33:42 Initializing Terraform AWS Provider (SDKv2-style)... --- PASS: TestAccCUR_serial (277.10s) --- PASS: TestAccCUR_serial/ReportDefinition (229.92s) --- PASS: TestAccCUR_serial/ReportDefinition/overwrite (26.21s) --- PASS: TestAccCUR_serial/ReportDefinition/disappears (23.11s) --- PASS: TestAccCUR_serial/ReportDefinition/textOrCsv (24.78s) --- PASS: TestAccCUR_serial/ReportDefinition/parquet (24.86s) --- PASS: TestAccCUR_serial/ReportDefinition/athena (24.72s) --- PASS: TestAccCUR_serial/ReportDefinition/refresh (24.85s) --- PASS: TestAccCUR_serial/ReportDefinition/DataSource_basic (22.64s) --- PASS: TestAccCUR_serial/ReportDefinition/DataSource_additional (22.11s) --- PASS: TestAccCUR_serial/ReportDefinition/basic (36.63s) --- PASS: TestAccCUR_serial/ReportDefinition/tags (47.17s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/cur 282.904s ```
dbbd92f
to
1e9ea02
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 🚀.
Tests still passing off latest changes from % make testacc PKG=cur TESTS=TestAccCUR_serial/ReportDefinition
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.24.4 test ./internal/service/cur/... -v -count 1 -parallel 20 -run='TestAccCUR_serial/ReportDefinition' -timeout 360m -vet=off
2025/06/18 09:24:51 Creating Terraform AWS Provider (SDKv2-style)...
2025/06/18 09:24:51 Initializing Terraform AWS Provider (SDKv2-style)...
--- PASS: TestAccCUR_serial (277.47s)
--- PASS: TestAccCUR_serial/ReportDefinition (231.03s)
--- PASS: TestAccCUR_serial/ReportDefinition/disappears (24.12s)
--- PASS: TestAccCUR_serial/ReportDefinition/athena (24.77s)
--- PASS: TestAccCUR_serial/ReportDefinition/refresh (24.65s)
--- PASS: TestAccCUR_serial/ReportDefinition/overwrite (24.88s)
--- PASS: TestAccCUR_serial/ReportDefinition/DataSource_basic (22.72s)
--- PASS: TestAccCUR_serial/ReportDefinition/basic (35.90s)
--- PASS: TestAccCUR_serial/ReportDefinition/textOrCsv (24.74s)
--- PASS: TestAccCUR_serial/ReportDefinition/parquet (26.40s)
--- PASS: TestAccCUR_serial/ReportDefinition/DataSource_additional (22.84s)
--- PASS: TestAccCUR_serial/ReportDefinition/tags (46.43s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/cur 283.536s |
Thanks for your contribution, @acwwat! 🎉 |
Warning This Issue has been closed, meaning that any additional comments are much easier for the maintainers to miss. Please assume that the maintainers will not see them. Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed. |
This functionality has been released in v6.0.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 is to set the
s3_prefix
argument of theaws_cur_report_definition
resource to required and add the appropriate validation.Relations
Closes #38399
References
Output from Acceptance Testing
Updated: 2025-06-12