-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Error while downloading module from terraform registry #23833
Comments
Hi, I am seeing the same issue as well.
^ This are the trace logs of what is happening. It looks like terraform gets the correct working URL path:
But, then, it somehow get's converted to a path that does not work later on:
|
This should now be fixed! Details in #23834 |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Error:
: Error: Failed to download module
:
: Could not download module "service_accounts" (../../../main.tf:6) source code
: from
: "https://api.github.com/repos/terraform-google-modules/terraform-google-service-accounts/tarball/v2.0.2//*?archive=tar.gz":
: Error opening a gzip reader for /tmp/tmp.pBync0kChF/getter826662469/archive:
: EOF.
Code:
module "service_accounts" {
source = "terraform-google-modules/service-accounts/google"
version = "~> 2.0"
project_id = var.project_id
prefix = "sa"
names = [var.name]
generate_keys = var.generate_key
project_roles = local.project_roles
}
The text was updated successfully, but these errors were encountered: