-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathoutputs.tf
More file actions
24 lines (20 loc) · 819 Bytes
/
outputs.tf
File metadata and controls
24 lines (20 loc) · 819 Bytes
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 "id" {
value = join("", aws_acm_certificate.default[*].id)
description = "The ID of the certificate"
}
output "arn" {
value = join("", aws_acm_certificate.default[*].arn)
description = "The ARN of the certificate"
}
output "domain_validation_options" {
value = aws_acm_certificate.default[*].domain_validation_options
description = "CNAME records that are added to the DNS zone to complete certificate validation"
}
output "validation_id" {
value = join("", aws_acm_certificate_validation.default[*].id)
description = "The ID of the certificate validation"
}
output "validation_certificate_arn" {
value = join("", aws_acm_certificate_validation.default[*].certificate_arn)
description = "Certificate ARN from the `aws_acm_certificate_validation` resource"
}