A Terraform module to create and manage Cognito User Pools (Simple and Secure User Sign-Up, Sign-In, and Access Control) on Amazon Web Services (AWS). https://aws.amazon.com/cognito
Apache License 2.0
60
stars
45
forks
source link
Update required_providers block in versions.tf #77
I've encountered an issue while running Terraform, and it appears to be related to the provider requirements in the versions.tf file of my module. The error I'm encountering is:
Finding hashicorp/aws versions matching ">= 3.50, < 5.0"...
Error: Failed to query available provider packages
Could not retrieve the list of available versions for provider hashicorp/aws: no available releases match the given constraints >= 3.50, < 5.0
Upon reviewing the code, I noticed that the required_providers block in versions.tf file is specified as follows:
However, it seems there's an issue with this version specification, as I'm getting an error when running Terraform. I propose updating the required_providers block in the versions.tf file as follows:
FWIW, I haven't checked git blame and I am not sure who needs to hear this but the AWS provider is too old. Can we kindly please have it updated? thanks!
Hi,
I've encountered an issue while running Terraform, and it appears to be related to the provider requirements in the versions.tf file of my module. The error I'm encountering is:
Upon reviewing the code, I noticed that the required_providers block in versions.tf file is specified as follows:
However, it seems there's an issue with this version specification, as I'm getting an error when running Terraform. I propose updating the required_providers block in the versions.tf file as follows:
This modification should resolve the issue and ensure the correct resolution of AWS provider versions.
Thank you for your attention.