Skip to main content

certificate_domain_validations

Creates, updates, deletes, gets or lists a certificate_domain_validations resource.

Overview

Namecertificate_domain_validations
TypeResource
Idaws.acm.certificate_domain_validations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
active_validation_configurationobjectThe validation configuration currently in effect for this domain. This reflects the validation method that ACM is currently using to validate domain ownership (for example, email or DNS).
domain_namestringThe fully qualified domain name (FQDN) in the certificate for which this validation summary applies. (pattern: <code>(*.)?(((?!-)[A-Za-z0-9-]{0,62}[A-Za-z0-9]).)+((?!-)[A-Za-z0-9-]{1,62}[A-Za-z0-9])</code>)
requested_validation_configurationobjectThe validation configuration for a pending validation method migration. This field is present only when a migration is in progress (for example, from email to DNS validation). It contains the target validation method, the current validation status, and the validation challenge details (such as the CNAME record to add to your DNS configuration).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_certificate_domain_validationsselectregionReturns per-domain validation summaries for an ACM certificate. Each summary includes the domain name, the active validation configuration, and the requested validation configuration when a validation method migration is in progress. You can use the results to monitor the progress of an email-to-DNS validation migration and to retrieve the CNAME records required for DNS validation.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns per-domain validation summaries for an ACM certificate. Each summary includes the domain name, the active validation configuration, and the requested validation configuration when a validation method migration is in progress. You can use the results to monitor the progress of an email-to-DNS validation migration and to retrieve the CNAME records required for DNS validation.

SELECT
active_validation_configuration,
domain_name,
requested_validation_configuration
FROM aws.acm.certificate_domain_validations
WHERE region = '{{ region }}' -- required
;