Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
Fix #39
Browse files Browse the repository at this point in the history
The `helm_client_tls_public_cert_pem` output should output the public certificate, not the private key.
  • Loading branch information
yorinasub17 authored Jul 26, 2019
1 parent 4f89b6b commit 112daa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 112daa4

Please sign in to comment.