You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
Noticed by this consistently failing acceptance test:
=== CONT TestAccAWSCognitoIdentityPool_openidConnectProviderArns
TestAccAWSCognitoIdentityPool_openidConnectProviderArns: resource_aws_cognito_identity_pool_test.go:99: After applying this test step, the plan was not empty.
stdout:
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# aws_cognito_identity_pool.main will be updated in-place
~ resource "aws_cognito_identity_pool" "main" {
allow_unauthenticated_identities = false
arn = "arn:aws:cognito-identity:us-west-2:*******:identitypool/us-west-2:29818d19-ab3c-40d5-b3cb-13ec6176ee24"
id = "us-west-2:29818d19-ab3c-40d5-b3cb-13ec6176ee24"
identity_pool_name = "identity pool o9se4jvj2s"
~ openid_connect_provider_arns = [
- "arn:aws:iam::123456789012:oidc-provider/bar.example.com",
"arn:aws:iam::123456789012:oidc-provider/foo.example.com",
+ "arn:aws:iam::123456789012:oidc-provider/bar.example.com",
]
saml_provider_arns = []
supported_login_providers = {}
tags = {}
}
Plan: 0 to add, 1 to change, 0 to destroy.
--- FAIL: TestAccAWSCognitoIdentityPool_openidConnectProviderArns (107.41s)
The API is returning results in a non-deterministic manner while the resource attribute is declared as an ordered list. As long as the submission ordering is not important, the attribute can be switched to TypeSet to fix this difference handling.
The text was updated successfully, but these errors were encountered:
bflad
added
bug
Addresses a defect in current functionality.
tests
PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
service/cognito
labels
Sep 16, 2020
Community Note
Description
Noticed by this consistently failing acceptance test:
The API is returning results in a non-deterministic manner while the resource attribute is declared as an ordered list. As long as the submission ordering is not important, the attribute can be switched to
TypeSet
to fix this difference handling.Affected Resource(s)
References
The text was updated successfully, but these errors were encountered: