generated from burib/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
34 lines (28 loc) · 994 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
25
26
27
28
29
30
31
32
33
34
output "wildcard_certificate_arn" {
description = "The ARN of the certificate"
value = element(concat(aws_acm_certificate_validation.wildcard_cert.*.certificate_arn, aws_acm_certificate.wildcard_cert.*.arn, [""]), 0)
}
output "hosted_zone_ns_records" {
description = "Name servers of the created hosted zone."
value = aws_route53_zone.this.name_servers
}
output "hosted_zone_arn" {
description = "The ARN of the hosted zone"
value = aws_route53_zone.this.arn
}
output "hosted_zone_id" {
description = "The ID of the hosted zone"
value = aws_route53_zone.this.zone_id
}
output "hosted_zone_name" {
description = "Name of the hosted zone. example.com"
value = aws_route53_zone.this.name
}
output "region" {
value = local.region
description = "AWS Region code where this stack has been deployed to."
}
output "account_id" {
value = local.account_id
description = "AWS Account ID where this stack has been deployed to."
}