-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Terraform rejects expired signatures when downloading providers through registry #33984
Copy link
Copy link
Closed
Description
Terraform Version
terraform version
Terraform v1.6.0
on linux_amd64
### Terraform Configuration Files
```cat versions.tf
terraform {
required_providers {
bigip = {
source = "f5networks/bigip"
}
phpipam = {
source = "lord-kyron/phpipam"
}
}
required_version = "< 2"
}
Debug Output
Initializing provider plugins...
- terraform.io/builtin/terraform is built in to Terraform
- Finding hashicorp/null versions matching "< 4.0.0"...
- Finding f5networks/bigip versions matching "< 2.0.0"...
- Finding lord-kyron/phpipam versions matching "< 1.4.0"...
- Finding hashicorp/dns versions matching "< 4.0.0"...
- Installing lord-kyron/phpipam v1.3.8...
- Installed lord-kyron/phpipam v1.3.8 (self-signed, key ID AFA614F0D7D39AB0)
- Installing hashicorp/dns v3.3.2...
- Installed hashicorp/dns v3.3.2 (signed by HashiCorp)
- Installing hashicorp/null v3.2.1...
- Installed hashicorp/null v3.2.1 (signed by HashiCorp)
- Installing f5networks/bigip v1.19.0...
Partner and community providers are signed by their developers.
If you'd like to know more about provider signing, you can read about it here:
https://www.terraform.io/docs/cli/plugins/signing.html
╷
│ Error: Failed to install provider
│
│ Error while installing f5networks/bigip v1.19.0: error checking signature: openpgp: key expired
╵Expected Behavior
Terraform init must work as expected
Actual Behavior
Terraform init fails throwing a key expired error.
Steps to Reproduce
terraform init
Additional Context
No response
References
No response
Reactions are currently unavailable