-
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
fix: fix typo in mapping for cascading_control_configuration #39453
fix: fix typo in mapping for cascading_control_configuration #39453
Conversation
The internally used key `cacading_control_configuration` contains a typo, so that the mapping finally fails.
Community NoteVoting for Prioritization
For Submitters
|
I would need some guidance on the testing part:
How would I need to proceed here? |
It looks like there's another one in |
A 2nd file was affected by the typo.
Agree, I missed that one - thanks for taking time and doing this consistency check! |
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=TestAccQuickSightDashboard_' PKG=quicksight ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.7 test ./internal/service/quicksight/... -v -count 1 -parallel 3 -run=TestAccQuickSightDashboard_ -timeout 360m
=== RUN TestAccQuickSightDashboard_basic
=== PAUSE TestAccQuickSightDashboard_basic
=== RUN TestAccQuickSightDashboard_disappears
=== PAUSE TestAccQuickSightDashboard_disappears
=== RUN TestAccQuickSightDashboard_sourceEntity
=== PAUSE TestAccQuickSightDashboard_sourceEntity
=== RUN TestAccQuickSightDashboard_updateVersionNumber
=== PAUSE TestAccQuickSightDashboard_updateVersionNumber
=== RUN TestAccQuickSightDashboard_dashboardSpecificConfig
=== PAUSE TestAccQuickSightDashboard_dashboardSpecificConfig
=== CONT TestAccQuickSightDashboard_basic
=== CONT TestAccQuickSightDashboard_updateVersionNumber
=== CONT TestAccQuickSightDashboard_sourceEntity
--- PASS: TestAccQuickSightDashboard_basic (39.94s)
=== CONT TestAccQuickSightDashboard_dashboardSpecificConfig
--- PASS: TestAccQuickSightDashboard_sourceEntity (41.68s)
=== CONT TestAccQuickSightDashboard_disappears
--- PASS: TestAccQuickSightDashboard_updateVersionNumber (74.14s)
--- PASS: TestAccQuickSightDashboard_disappears (34.95s)
--- PASS: TestAccQuickSightDashboard_dashboardSpecificConfig (38.10s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/quicksight 83.703s
testing: warning: no tests to run
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/quicksight/schema 0.593s [no tests to run]
@stefanfreitag Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.70.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
The internally used key
cacading_control_configuration
contains a typo, so that the mapping fails.Relations
Closes #39139
References
Output from Acceptance Testing
TDB - I would need to check how to provide a test for the fix.