You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
description = "A list of attributes to feed into other resources to complete certificate validation. Can have more than one element, e.g. if SANs are defined. Only set if DNS-validation was used."
value = flatten(aws_acm_certificate.this.*.domain_validation_options)
}
output "this_acm_certificate_validation_emails" {
description = "A list of addresses that received a validation E-Mail. Only set if EMAIL-validation was used."
value = flatten(aws_acm_certificate.this.*.validation_emails)
}
output "validation_route53_record_fqdns" {
description = "List of FQDNs built using the zone domain and name."
value = aws_route53_record.validation.*.fqdn
}
output "distinct_domain_names" {
description = "List of distinct domains names used for the validation."
value = local.distinct_domain_names
}
output "validation_domains" {
description = "List of distinct domain validation options. This is useful if subject alternative names contain wildcards."