From 268779d015c95ecaa47a05bee46883b6be4061a2 Mon Sep 17 00:00:00 2001 From: badra001 Date: Wed, 10 Jan 2024 09:07:20 -0500 Subject: [PATCH] update --- acmpca-eks-cert-manager/README.md | 18 ++++++++++++------ acmpca-eks-cert-manager/main.tf | 18 ++++++++++++------ 2 files changed, 24 insertions(+), 12 deletions(-) diff --git a/acmpca-eks-cert-manager/README.md b/acmpca-eks-cert-manager/README.md index 88936a8..0c5430a 100644 --- a/acmpca-eks-cert-manager/README.md +++ b/acmpca-eks-cert-manager/README.md @@ -10,12 +10,18 @@ not nor will it create any local files, so no longer do you need to add files to is not created). This module returns: -- certificate\_tls\_key: the base64 PEM formatted key. This is what you need to use in the helm chart for `tls.key`. -- certificate\_tls\_crt: the base64 PEM formatted certificate and chain. This is what you need to use in the helm chart for `tls.crt`. -- certificate\_key: the PEM formatted key. It is here for reference, but should not be needed by `cert-manager`. -- certificate\_csr: the certificate signing requested. It is here for reference, but should not be needed by `cert-manager`. -- certificate: the PEM formatted signed certificate from ACM-PCA. It is here for reference, but should not be needed by `cert-manager`. -- certificate\_chain: the PEM formatted certificate chain (issuer, intermediates, root). It is here for reference, but should not be needed by `cert-manager`. +- certificate\_tls\_key + The base64 PEM formatted key. This is what you need to use in the helm chart for `tls.key`. +- certificate\_tls\_crt + The base64 PEM formatted certificate and chain. This is what you need to use in the helm chart for `tls.crt`. +- certificate\_key + The PEM formatted key. It is here for reference, but should not be needed by `cert-manager`. +- certificate\_csr + The certificate signing requested. It is here for reference, but should not be needed by `cert-manager`. +- certificate + The PEM formatted signed certificate from ACM-PCA. It is here for reference, but should not be needed by `cert-manager`. +- certificate\_chain + The PEM formatted certificate chain (issuer, intermediates, root). It is here for reference, but should not be needed by `cert-manager`. It takes two arguments, the `cluster_name` and the `contact_email`, which should be a group email address. Currently, and ACM-PCA Certificate does not permit the use of Tags, so this email address is intended to be used at a future time through a to-be-established tracking system. diff --git a/acmpca-eks-cert-manager/main.tf b/acmpca-eks-cert-manager/main.tf index ec98f8e..b1f0a96 100644 --- a/acmpca-eks-cert-manager/main.tf +++ b/acmpca-eks-cert-manager/main.tf @@ -10,12 +10,18 @@ * is not created). * * This module returns: -* - certificate_tls_key: the base64 PEM formatted key. This is what you need to use in the helm chart for `tls.key`. -* - certificate_tls_crt: the base64 PEM formatted certificate and chain. This is what you need to use in the helm chart for `tls.crt`. -* - certificate_key: the PEM formatted key. It is here for reference, but should not be needed by `cert-manager`. -* - certificate_csr: the certificate signing requested. It is here for reference, but should not be needed by `cert-manager`. -* - certificate: the PEM formatted signed certificate from ACM-PCA. It is here for reference, but should not be needed by `cert-manager`. -* - certificate_chain: the PEM formatted certificate chain (issuer, intermediates, root). It is here for reference, but should not be needed by `cert-manager`. +* - certificate_tls_key +* The base64 PEM formatted key. This is what you need to use in the helm chart for `tls.key`. +* - certificate_tls_crt +* The base64 PEM formatted certificate and chain. This is what you need to use in the helm chart for `tls.crt`. +* - certificate_key +* The PEM formatted key. It is here for reference, but should not be needed by `cert-manager`. +* - certificate_csr +* The certificate signing requested. It is here for reference, but should not be needed by `cert-manager`. +* - certificate +* The PEM formatted signed certificate from ACM-PCA. It is here for reference, but should not be needed by `cert-manager`. +* - certificate_chain +* The PEM formatted certificate chain (issuer, intermediates, root). It is here for reference, but should not be needed by `cert-manager`. * * It takes two arguments, the `cluster_name` and the `contact_email`, which should be a group email address. Currently, and ACM-PCA Certificate * does not permit the use of Tags, so this email address is intended to be used at a future time through a to-be-established tracking system.