Skip to content

Commit

Permalink
update message for cert.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Dec 19, 2022
1 parent 4d5fc70 commit ecd54b5
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions examples/full-cluster-tf-upgrade/common-services/cert.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,18 @@ Now submit file to TCO for signing and return the result as below:
dns = ${local.ca_dns_name}
csr = certs/${local.ca_dns_name}.csr
Ask for the certificate to be signed with the Linux (v2) PKI CA with the command:
**IMPORTANT**
% ./sign-subordinate-ca-cert.sh ${local.ca_dns_name}.csr 'c=US,o=U.S. Census Bureau,OU=PKI,ou=EKS,ou=${var.vpc_full_name},ou=${var.cluster_name},cn=${local.ca_dns_name}' 730"
We are no longer issuing certificate from the Linux (v2) PKI, so you must request one from the MS CA.
Ask for the certificate to be signed with the Microsoft (MS CA, v3) PKI CA with the command (Windows, PowerShell):
certreq -submit -attrib "CertificateTemplate:USCBSubordinateCertificationAuthority" ${local.ca_dns_name}.csr ${local.ca_dns_name}.cer
It is very important that this certificate be issued as a Subordinate Certification Authority. The default method of a server certificate
will fail and will cause a lot of issues.
Further, you will NOT enable the download option with the MS CA. If you receive a download link to ca.apps.tco.census.gov, do not attempt
to proceed, and request the correctly-signed certificate as described above.
EOM
}
Expand Down

0 comments on commit ecd54b5

Please sign in to comment.