Skip to content
This repository was archived by the owner on Mar 6, 2022. It is now read-only.

Commit 43b74af

Browse files
committed
fix terraform gpg error
* fix issue with terraform on init that was giving error 'openpgp: signature made by unknown entity'. this is due to hashicorp rotation their signing keys in response to a security incident (https://discuss.hashicorp.com/t/terraform-updates-for-hcsec-2021-12/23570). fix is upgrading from 0.11.14->0.11.15. closes #190.
1 parent 032ab97 commit 43b74af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.0.10
1+
11.0.11

internal/terraform/terraform.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
const (
2222
// Version is the Terraform version that is downloaded and used
2323
// TODO: this version of Terraform is getting quite old, but don't have a great plan for seamless major version upgrade.
24-
Version = "0.11.14"
24+
Version = "0.11.15"
2525
// DefaultTerraformDestroyTimeout is the default timeout for running Terraform destroy
2626
DefaultTerraformDestroyTimeout = time.Minute * 2
2727
)

0 commit comments

Comments
 (0)