-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
50 lines (40 loc) · 1.82 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
output "active_trusted_signers" {
description = "The key pair IDs that CloudFront is aware of for each trusted signer, if the distribution is set up to serve private content with signed URLs."
value = aws_cloudfront_distribution.cf_distribution.trusted_signers
}
output "arn" {
description = "The ARN (Amazon Resource Name) for the distribution."
value = aws_cloudfront_distribution.cf_distribution.arn
}
output "caller_reference" {
description = "Internal value used by CloudFront to allow future updates to the distribution configuration."
value = aws_cloudfront_distribution.cf_distribution.caller_reference
}
output "domain_name" {
description = "The domain name corresponding to the distribution."
value = aws_cloudfront_distribution.cf_distribution.domain_name
}
output "etag" {
description = "The current version of the distribution's information."
value = aws_cloudfront_distribution.cf_distribution.etag
}
output "hosted_zone_id" {
description = "The CloudFront Route 53 zone ID that can be used to route an Alias Resource Record Set to."
value = aws_cloudfront_distribution.cf_distribution.hosted_zone_id
}
output "id" {
description = "The identifier for the distribution."
value = aws_cloudfront_distribution.cf_distribution.id
}
output "in_progress_validation_batches" {
description = "The number of invalidation batches currently in progress."
value = aws_cloudfront_distribution.cf_distribution.in_progress_validation_batches
}
output "last_modified_time" {
description = "The date and time the distribution was last modified."
value = aws_cloudfront_distribution.cf_distribution.last_modified_time
}
output "status" {
description = "The current status of the distribution."
value = aws_cloudfront_distribution.cf_distribution.status
}