There are more AWS SDK examples available in the AWS Doc SDK Examples
AWS Private CA examples using AWS CLI
The following code examples show you how to perform actions and implement common scenarios by using the AWS Command Line Interface with AWS Private CA.
Actions are code excerpts from larger programs and must be run in context. While actions show you how to call individual service functions, you can see actions in context in their related scenarios.
Each example includes a link to the complete source code, where you can find instructions on how to set up and run the code in context.
Topics
Actions
The following code example shows how to use create-certificate-authority-audit-report.
- AWS CLI
-
To create a certificate authority audit report
The following
create-certificate-authority-audit-reportcommand creates an audit report for the private CA identified by the ARN.aws acm-pca create-certificate-authority-audit-report --certificate-authority-arnarn:aws:acm-pca:us-east-1:accountid:certificate-authority/12345678-1234-1234-1234-123456789012--s3-bucket-nameyour-bucket-name--audit-report-response-formatJSON-
For API details, see CreateCertificateAuthorityAuditReport
in AWS CLI Command Reference.
-
The following code example shows how to use create-certificate-authority.
- AWS CLI
-
To create a private certificate authority
The following
create-certificate-authoritycommand creates a private certificate authority in your AWS account.aws acm-pca create-certificate-authority --certificate-authority-configuration file://C:\ca_config.txt --revocation-configuration file://C:\revoke_config.txt --certificate-authority-type"SUBORDINATE"--idempotency-token98256344-
For API details, see CreateCertificateAuthority
in AWS CLI Command Reference.
-
The following code example shows how to use delete-certificate-authority.
- AWS CLI
-
To delete a private certificate authority
The following
delete-certificate-authoritycommand deletes the certificate authority identified by the ARN.aws acm-pca delete-certificate-authority --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012-
For API details, see DeleteCertificateAuthority
in AWS CLI Command Reference.
-
The following code example shows how to use describe-certificate-authority-audit-report.
- AWS CLI
-
To describe an audit report for a certificate authority
The following
describe-certificate-authority-audit-reportcommand lists information about the specified audit report for the CA identified by the ARN.aws acm-pca describe-certificate-authority-audit-report --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/99999999-8888-7777-6666-555555555555--audit-report-id11111111-2222-3333-4444-555555555555-
For API details, see DescribeCertificateAuthorityAuditReport
in AWS CLI Command Reference.
-
The following code example shows how to use describe-certificate-authority.
- AWS CLI
-
To describe a private certificate authority
The following
describe-certificate-authoritycommand lists information about the private CA identified by the ARN.aws acm-pca describe-certificate-authority --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012-
For API details, see DescribeCertificateAuthority
in AWS CLI Command Reference.
-
The following code example shows how to use get-certificate-authority-certificate.
- AWS CLI
-
To retrieve a certificate authority (CA) certificate
The following
get-certificate-authority-certificatecommand retrieves the certificate and certificate chain for the private CA specified by the ARN.aws acm-pca get-certificate-authority-certificate --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--outputtext-
For API details, see GetCertificateAuthorityCertificate
in AWS CLI Command Reference.
-
The following code example shows how to use get-certificate-authority-csr.
- AWS CLI
-
To retrieve the certificate signing request for a certificate authority
The following
get-certificate-authority-csrcommand retrieves the CSR for the private CA specified by the ARN.aws acm-pca get-certificate-authority-csr --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--outputtext-
For API details, see GetCertificateAuthorityCsr
in AWS CLI Command Reference.
-
The following code example shows how to use get-certificate.
- AWS CLI
-
To retrieve an issued certificate
The following
get-certificateexample retrieves a certificate from the specified private CA.aws acm-pca get-certificate \ --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012\ --certificate-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/6707447683a9b7f4055627ffd55cebcc\ --outputtextOutput:
-----BEGIN CERTIFICATE----- MIIEDzCCAvegAwIBAgIRAJuJ8f6ZVYL7gG/rS3qvrZMwDQYJKoZIhvcNAQELBQAw cTELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24xEDAOBgNVBAcMB1Nl ....certificate body truncated for brevity.... tKCSglgZZrd4FdLw1EkGm+UVXnodwMtJEQyy3oTfZjURPIyyaqskTu/KSS7YDjK0 KQNy73D6LtmdOEbAyq10XiDxqY41lvKHJ1eZrPaBmYNABxU= -----END CERTIFICATE---- -----BEGIN CERTIFICATE----- MIIDrzCCApegAwIBAgIRAOskdzLvcj1eShkoyEE693AwDQYJKoZIhvcNAQELBQAw cTELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24xEDAOBgNVBAcMB1Nl ...certificate body truncated for brevity.... kdRGB6P2hpxstDOUIwAoCbhoaWwfA4ybJznf+jOQhAziNlRdKQRR8nODWpKt7H9w dJ5nxsTk/fniJz86Ddtp6n8s82wYdkN3cVffeK72A9aTCOU= -----END CERTIFICATE-----The first part of the output is the certificate itself. The second part is the certificate chain that chains to the root CA certificate. Note that when you use the
--output textoption, aTABcharacter is inserted between the two certificate pieces (that is the cause of the indented text). If you intend to take this output and parse the certificates with other tools, you might need to remove theTABcharacter so it is processed correctly.-
For API details, see GetCertificate
in AWS CLI Command Reference.
-
The following code example shows how to use import-certificate-authority-certificate.
- AWS CLI
-
To import your certificate authority certificate into ACM PCA
The following
import-certificate-authority-certificatecommand imports the signed private CA certificate for the CA specified by the ARN into ACM PCA.aws acm-pca import-certificate-authority-certificate --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--certificate file://C:\ca_cert.pem --certificate-chain file://C:\ca_cert_chain.pem-
For API details, see ImportCertificateAuthorityCertificate
in AWS CLI Command Reference.
-
The following code example shows how to use issue-certificate.
- AWS CLI
-
To issue a private certificate
The following
issue-certificatecommand uses the private CA specified by the ARN to issue a private certificate.aws acm-pca issue-certificate --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--csr file://C:\cert_1.csr --signing-algorithm"SHA256WITHRSA"--validity Value=365,Type="DAYS" --idempotency-token1234-
For API details, see IssueCertificate
in AWS CLI Command Reference.
-
The following code example shows how to use list-certificate-authorities.
- AWS CLI
-
To list your private certificate authorities
The following
list-certificate-authoritiescommand lists information about all of the private CAs in your account.aws acm-pca list-certificate-authorities --max-results10-
For API details, see ListCertificateAuthorities
in AWS CLI Command Reference.
-
The following code example shows how to use list-tags.
- AWS CLI
-
To list the tags for your certificate authority
The following
list-tagscommand lists the tags associated with the private CA specified by the ARN.aws acm-pca list-tags --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/123455678-1234-1234-1234-123456789012--max-results10-
For API details, see ListTags
in AWS CLI Command Reference.
-
The following code example shows how to use revoke-certificate.
- AWS CLI
-
To revoke a private certificate
The following
revoke-certificatecommand revokes a private certificate from the CA identified by the ARN.aws acm-pca revoke-certificate --certificate-authority-arnarn:aws:acm-pca:us-west-2:1234567890:certificate-authority/12345678-1234-1234-1234-123456789012--certificate-serial67:07:44:76:83:a9:b7:f4:05:56:27:ff:d5:5c:eb:cc--revocation-reason"KEY_COMPROMISE"-
For API details, see RevokeCertificate
in AWS CLI Command Reference.
-
The following code example shows how to use tag-certificate-authority.
- AWS CLI
-
To attach tags to a private certificate authority
The following
tag-certificate-authoritycommand attaches one or more tags to your private CA.aws acm-pca tag-certificate-authority --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--tagsKey=Admin,Value=Alice-
For API details, see TagCertificateAuthority
in AWS CLI Command Reference.
-
The following code example shows how to use untag-certificate-authority.
- AWS CLI
-
To remove one or more tags from your private certificate authority
The following
untag-certificate-authoritycommand removes tags from the private CA identified by the ARN.aws acm-pca untag-certificate-authority --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-123456789012--tagsKey=Purpose,Value=Website-
For API details, see UntagCertificateAuthority
in AWS CLI Command Reference.
-
The following code example shows how to use update-certificate-authority.
- AWS CLI
-
To update the configuration of your private certificate authority
The following
update-certificate-authoritycommand updates the status and configuration of the private CA identified by the ARN.aws acm-pca update-certificate-authority --certificate-authority-arnarn:aws:acm-pca:us-west-2:123456789012:certificate-authority/12345678-1234-1234-1234-1232456789012--revocation-configuration file://C:\revoke_config.txt --status"DISABLED"-
For API details, see UpdateCertificateAuthority
in AWS CLI Command Reference.
-