-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
54 lines (44 loc) · 1.65 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
output "headers_lambda_qualified_arn" {
value = "${module.lambdas.headers_lambda_unqualified_arn}:${module.lambdas.headers_lambda_version}"
description = "Qualified ARN of headers Lambda"
}
output "paths_lambda_qualified_arn" {
value = "${module.lambdas.paths_lambda_unqualified_arn}:${module.lambdas.paths_lambda_version}"
description = "Qualified ARN of paths Lambda"
}
output "lambda_role_arn" {
value = "${module.lambdas.lambda_role_arn}"
description = "ARN of role assigned to Lambdas"
}
output "bucket_id" {
value = "${module.bucket.bucket_id}"
description = "ID for Origin S3 Bucket"
}
output "bucket_domain_name" {
value = "${module.bucket.bucket_domain_name}"
description = "Domain name for Origin S3 Bucket"
}
output "certificate_id" {
value = "${module.certificate.cert_id}"
description = "ID of certfificate provisioned in ACM"
}
output "certificate_arn" {
value = "${module.certificate.cert_arn}"
description = "ARN of certificate provisioned in ACM"
}
output "cloudfront_dist_id" {
value = "${module.cloudfront_distribution.cloudfront_dist_id}"
description = "ID of CloudFront Distribution"
}
output "cloudfront_dist_zone_id" {
value = "${module.cloudfront_distribution.cloudfront_dist_zone_id}"
description = "Zone ID of CloudFront Distribution"
}
output "cloudfront_domain" {
value = "${module.cloudfront_distribution.cloudfront_domain}"
description = ".cloudfront.net domain of Distribution"
}
output "cloudfront_origin_iam_arn" {
value = "${module.cloudfront_distribution.cloudfront_origin_iam_arn}"
description = "CloudFront Origin Acess Identity"
}