-
-
Notifications
You must be signed in to change notification settings - Fork 250
/
outputs.tf
84 lines (68 loc) · 3.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
output "cloudfront_distribution_id" {
description = "The identifier for the distribution."
value = try(aws_cloudfront_distribution.this[0].id, "")
}
output "cloudfront_distribution_arn" {
description = "The ARN (Amazon Resource Name) for the distribution."
value = try(aws_cloudfront_distribution.this[0].arn, "")
}
output "cloudfront_distribution_caller_reference" {
description = "Internal value used by CloudFront to allow future updates to the distribution configuration."
value = try(aws_cloudfront_distribution.this[0].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 = try(aws_cloudfront_distribution.this[0].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 = try(aws_cloudfront_distribution.this[0].trusted_signers, "")
}
output "cloudfront_distribution_domain_name" {
description = "The domain name corresponding to the distribution."
value = try(aws_cloudfront_distribution.this[0].domain_name, "")
}
output "cloudfront_distribution_last_modified_time" {
description = "The date and time the distribution was last modified."
value = try(aws_cloudfront_distribution.this[0].last_modified_time, "")
}
output "cloudfront_distribution_in_progress_validation_batches" {
description = "The number of invalidation batches currently in progress."
value = try(aws_cloudfront_distribution.this[0].in_progress_validation_batches, "")
}
output "cloudfront_distribution_etag" {
description = "The current version of the distribution's information."
value = try(aws_cloudfront_distribution.this[0].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 = try(aws_cloudfront_distribution.this[0].hosted_zone_id, "")
}
output "cloudfront_origin_access_identities" {
description = "The origin access identities created"
value = { for k, v in aws_cloudfront_origin_access_identity.this : k => v if local.create_origin_access_identity }
}
output "cloudfront_origin_access_identity_ids" {
description = "The IDS of the origin access identities created"
value = [for v in aws_cloudfront_origin_access_identity.this : v.id if local.create_origin_access_identity]
}
output "cloudfront_origin_access_identity_iam_arns" {
description = "The IAM arns of the origin access identities created"
value = [for v in aws_cloudfront_origin_access_identity.this : v.iam_arn if local.create_origin_access_identity]
}
output "cloudfront_monitoring_subscription_id" {
description = " The ID of the CloudFront monitoring subscription, which corresponds to the `distribution_id`."
value = try(aws_cloudfront_monitoring_subscription.this[0].id, "")
}
output "cloudfront_distribution_tags" {
description = "Tags of the distribution's"
value = try(aws_cloudfront_distribution.this[0].tags_all, "")
}
output "cloudfront_origin_access_controls" {
description = "The origin access controls created"
value = local.create_origin_access_control ? { for k, v in aws_cloudfront_origin_access_control.this : k => v } : {}
}
output "cloudfront_origin_access_controls_ids" {
description = "The IDS of the origin access identities created"
value = local.create_origin_access_control ? [for v in aws_cloudfront_origin_access_control.this : v.id] : []
}