-
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
datasource/aws_cognito_user_pool: Fixes value conversion error #39260
Conversation
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=TestAccCognitoIDPUserPoolDataSource_' PKG=cognitoidp ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.6 test ./internal/service/cognitoidp/... -v -count 1 -parallel 3 -run=TestAccCognitoIDPUserPoolDataSource_ -timeout 360m
=== RUN TestAccCognitoIDPUserPoolDataSource_tags
=== PAUSE TestAccCognitoIDPUserPoolDataSource_tags
=== RUN TestAccCognitoIDPUserPoolDataSource_basic
=== PAUSE TestAccCognitoIDPUserPoolDataSource_basic
=== RUN TestAccCognitoIDPUserPoolDataSource_schemaAttributes
=== PAUSE TestAccCognitoIDPUserPoolDataSource_schemaAttributes
=== RUN TestAccCognitoIDPUserPoolDataSource_userPoolTags
=== PAUSE TestAccCognitoIDPUserPoolDataSource_userPoolTags
=== CONT TestAccCognitoIDPUserPoolDataSource_tags
=== CONT TestAccCognitoIDPUserPoolDataSource_schemaAttributes
=== CONT TestAccCognitoIDPUserPoolDataSource_basic
--- PASS: TestAccCognitoIDPUserPoolDataSource_tags (12.63s)
=== CONT TestAccCognitoIDPUserPoolDataSource_userPoolTags
--- PASS: TestAccCognitoIDPUserPoolDataSource_schemaAttributes (13.16s)
--- PASS: TestAccCognitoIDPUserPoolDataSource_basic (13.81s)
--- PASS: TestAccCognitoIDPUserPoolDataSource_userPoolTags (13.12s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/cognitoidp 31.091s
c6d3a27
to
c844eca
Compare
This functionality has been released in v5.67.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
Fixes value conversion error in data source
aws_cognito_user_pool
. Data type was not identified because a non-standard attribute name was used in the schema.Deprecates non-standard attribute
user_pool_tags
and adds standard attributetags
.Relations
Closes #39183.
Closes #39245.
References
Output from Acceptance Testing