Could you fix this so that it does not cause errors for others including your module in their root module?
│ Error: Failed to query available provider packages
│
│ Could not retrieve the list of available versions for provider hashicorp/aws: locked provider registry.terraform.io/hashicorp/aws 3.49.0 does not match configured version constraint >= 2.23.0, > 3.0.0, ~> 3.40.0, < 4.0.0; must use
│ terraform init -upgrade to allow selection of new versions
╵
In https://github.com/DrFaust92/terraform-kubernetes-ebs-csi-driver/blob/master/versions.tf#L6 the aws provider version is pinned to 3.40.0.
In our code we are using the latest provider which is 3.49.0.
The doc here explicitly says not use
~>
https://www.terraform.io/docs/language/providers/requirements.html#best-practices-for-provider-versions.Could you fix this so that it does not cause errors for others including your module in their root module?