diff --git a/examples/full-cluster/common-services/cert.tf b/examples/full-cluster/common-services/cert.tf index a6e3547..af38a09 100644 --- a/examples/full-cluster/common-services/cert.tf +++ b/examples/full-cluster/common-services/cert.tf @@ -22,17 +22,20 @@ locals { ca_root_exists = fileexists(local.ca_root_filename) ca_bundle_contents = local.ca_cert_exists && local.ca_root_exists ? format("%v%v", file(local.ca_cert_filename), file(local.ca_root_filename)) : "" ca_bundle_filename = format("${path.root}/certs/%v.bundle.crt", local.ca_dns_name) -} -module "cert" { - source = "git@github.e.it.census.gov:terraform-modules/aws-tls-certificate" + v2_certificate_csr_message = <