github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/website/docs/cli/plugins/signing.mdx (about) 1 --- 2 page_title: Plugin Signing 3 description: >- 4 Learn about the types of signatures providers can have on the Terraform 5 Registry. 6 --- 7 8 <!-- THIS PAGED IS LINKED TO IN THE CLI --> 9 10 # Plugin Signing 11 12 ~> **Note** Currently only provider plugins fetched from a registry are authenticated. 13 14 Terraform providers installed from the Registry are cryptographically signed, and the signature is verified at time of installation. There are three types of provider signatures, each with different trust implications: 15 16 * **Signed by HashiCorp** - are built, signed, and supported by HashiCorp. 17 * **Signed by Trusted Partners** - are built, signed, and supported by a third party. HashiCorp has 18 verified the ownership of the private key and we provide a chain of trust to the CLI to verify this 19 programatically. 20 * **Self-signed** - are built, signed, and supported by a third party. HashiCorp does not provide a 21 verification or chain of trust for the signature. You may obtain and validate fingerprints manually 22 if you want to ensure you are using a binary you can trust. 23 24 Terraform does **NOT** support fetching and using unsigned binaries, but you can manually install 25 unsigned binaries. You should take extreme care when doing so as no programatic authentication is performed. 26 27 Usage of plugins from the registry is subject to the Registry's [Terms of Use](https://registry.terraform.io/terms).