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
Hi team, I was releasing a terraform provider and I met the following errors.
The doc says
There are 1 or more zip files containing the built provider binary for a single architecture.
The binary name is terraform-provider-{NAME}_v{VERSION}.
The archive name is terraform-provider-{NAME}_{VERSION}_{OS}_{ARCH}.zip.
But when I was doing this, and terraform init throws an error
│ Error: Failed to install provider
│
│ Error while installing azure/azapi v0.1.0: unsuccessful request to
│ https://github.com/Azure/terraform-provider-azapi/releases/download/v0.1.0/terraform-provider-azapi_v0.1.0_windows_amd64.zip: 404 Not Found
╵
Please notice the difference is v before version v0.1.0. After I renamed the archives by adding v before version, it works.
I think this is kind of strange that these files are not following the same pattern, zip files/binary files have v before version, but checksum file and signature file don't.
Hi team, I was releasing a terraform provider and I met the following errors.
The doc says
But when I was doing this, and
terraform init
throws an errorPlease notice the difference is
v
before version v0.1.0. After I renamed the archives by addingv
before version, it works.I think this is kind of strange that these files are not following the same pattern, zip files/binary files have
v
before version, but checksum file and signature file don't.https://www.terraform.io/registry/providers/publishing?_ga=2.204875920.1848645224.1649644205-1459696673.1614833669#manually-preparing-a-release
The text was updated successfully, but these errors were encountered: