Last active
October 16, 2024 14:03
-
-
Save nicosingh/3960685e421d621a277ab360c2f4f74d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output "certificate_pem" { | |
value = acme_certificate.certificate.certificate_pem | |
} | |
output "issuer_pem" { | |
value = acme_certificate.certificate.issuer_pem | |
} | |
output "private_key_pem" { | |
value = nonsensitive(acme_certificate.certificate.private_key_pem) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment