-
Notifications
You must be signed in to change notification settings - Fork 16
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 verifying GPG signature for provider "cyberark/conjur" #93
Comments
EDIT |
0.13.0 seems to work without issue with the following main.tf: terraform {
required_providers {
conjur = {
source = "cyberark/conjur"
version = "0.6.2"
}
}
}
provider "conjur" {}
data "conjur_secret" "myfetchedsecret" {
name = "dev/openshift/next/version"
}
resource "local_file" "myfetchedsecret-to-file" {
content = data.conjur_secret.myfetchedsecret.value
filename = "${path.module}/../myfetchedsecret"
file_permission = "0664"
}
|
Reproduced as well, many thanks @ismarc ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Unable to use Conjur provider for Terraform.
Steps to Reproduce
Steps to reproduce the behavior:
And this docker image: hashicorp/terraform:latest (2021/09/08)
Terraform init
fails with the below error:Expected Results
Terraform init
succeedsActual Results (including error logs, if applicable)
Terraform init
fails with GPG error (see above)Reproducible
Version/Tag number
latest (0.6.2)
The text was updated successfully, but these errors were encountered: