-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
24 lines (20 loc) · 1023 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "acm_certificate_arn" {
description = "The ARN of the certificate"
value = element(concat(aws_acm_certificate_validation.this.*.certificate_arn, aws_acm_certificate.this.*.arn, [""]), 0)
}
output "acm_certificate_domain_validation_options" {
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."
value = flatten(aws_acm_certificate.this.*.domain_validation_options)
}
output "validation_dns_record_fqdns" {
description = "List of FQDNs built using the zone domain and name."
value = cloudflare_record.validation.*.hostname
}
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."
value = local.validation_domains
}