From 112daa4b90e68b0b0d18dee6d07ade42f26d700a Mon Sep 17 00:00:00 2001 From: Yoriyasu Yano <430092+yorinasub17@users.noreply.github.com> Date: Fri, 26 Jul 2019 12:55:45 -0700 Subject: [PATCH] Fix #39 The `helm_client_tls_public_cert_pem` output should output the public certificate, not the private key. --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 53fcf5f..e81c16d 100644 --- a/outputs.tf +++ b/outputs.tf @@ -17,7 +17,7 @@ output "helm_client_tls_private_key_pem" { output "helm_client_tls_public_cert_pem" { description = "The public certificate of the TLS certificate key pair to use for the helm client." sensitive = true - value = module.helm_client_tls_certs.tls_certificate_key_pair_private_key_pem + value = module.helm_client_tls_certs.tls_certificate_key_pair_certificate_pem } output "helm_client_tls_ca_cert_pem" {