-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
69 lines (56 loc) · 2.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
output "cloudfront_distribution_id" {
description = "The identifier for the distribution."
value = module.cloudfront.cloudfront_distribution_id
}
output "cloudfront_distribution_arn" {
description = "The ARN (Amazon Resource Name) for the distribution."
value = module.cloudfront.cloudfront_distribution_arn
}
output "cloudfront_distribution_caller_reference" {
description = "Internal value used by CloudFront to allow future updates to the distribution configuration."
value = module.cloudfront.cloudfront_distribution_caller_reference
}
output "cloudfront_distribution_status" {
description = "The current status of the distribution. Deployed if the distribution's information is fully propagated throughout the Amazon CloudFront system."
value = module.cloudfront.cloudfront_distribution_status
}
output "cloudfront_distribution_trusted_signers" {
description = "List of nested attributes for active trusted signers, if the distribution is set up to serve private content with signed URLs"
value = module.cloudfront.cloudfront_distribution_trusted_signers
}
output "cloudfront_distribution_domain_name" {
description = "The domain name corresponding to the distribution."
value = module.cloudfront.cloudfront_distribution_domain_name
}
output "cloudfront_distribution_last_modified_time" {
description = "The date and time the distribution was last modified."
value = module.cloudfront.cloudfront_distribution_last_modified_time
}
output "cloudfront_distribution_in_progress_validation_batches" {
description = "The number of invalidation batches currently in progress."
value = module.cloudfront.cloudfront_distribution_in_progress_validation_batches
}
output "cloudfront_distribution_etag" {
description = "The current version of the distribution's information."
value = module.cloudfront.cloudfront_distribution_etag
}
output "cloudfront_distribution_hosted_zone_id" {
description = "The CloudFront Route 53 zone ID that can be used to route an Alias Resource Record Set to."
value = module.cloudfront.cloudfront_distribution_hosted_zone_id
}
output "cloudfront_origin_access_identities" {
description = "The origin access identities created"
value = module.cloudfront.cloudfront_origin_access_identities
}
output "cloudfront_origin_access_identity_ids" {
description = "The IDS of the origin access identities created"
value = module.cloudfront.cloudfront_origin_access_identity_ids
}
output "cloudfront_origin_access_identity_iam_arns" {
description = "The IAM arns of the origin access identities created"
value = module.cloudfront.cloudfront_origin_access_identity_iam_arns
}
output "route53_aliases_records" {
description = "Route53 ALIAS records created for this distribution"
value = aws_route53_record.record
}