Last active
October 16, 2024 14:04
-
-
Save nicosingh/29495a58cd7e6112b32c1eac5c03d795 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
resource "aws_acm_certificate" "certificate" { | |
certificate_body = acme_certificate.certificate.certificate_pem | |
private_key = acme_certificate.certificate.private_key_pem | |
certificate_chain = acme_certificate.certificate.issuer_pem | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment