aws.acm_pca.get_certificate_authority_csr
Example SQL Queries
SELECT * FROMaws.acm_pca.get_certificate_authority_csrWHERE"certificate_authority_arn" = 'VALUE';Description
Retrieves the certificate signing request (CSR) for your private certificate authority (CA). The CSR is created when you call the CreateCertificateAuthority action. Sign the CSR with your Amazon Web Services Private CA-hosted or on-premises root or subordinate CA. Then import the signed certificate back into Amazon Web Services Private CA by calling the ImportCertificateAuthorityCertificate action. The CSR is returned as a base64 PEM-encoded string.
Table Definition
| Column Name | Column Data Type |
|---|---|
| certificate_authority_arn Required Input Column The Amazon Resource Name (ARN) that was returned when you called the CreateCertificateAuthority action. This must be of the form: arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| csr The base64 PEM-encoded certificate signing request (CSR) for your private CA certificate. | VARCHAR |