-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
49 lines (40 loc) · 1.28 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 "id" {
value = aws_cloudfront_distribution.default.id
description = "ID of the CloudFront distribution"
}
output "arn" {
value = aws_cloudfront_distribution.default.arn
description = "ARN of the CloudFront distribution"
}
output "application_fqdn" {
value = aws_route53_record.cloudfront.name
description = "Custom FQDN pointing to the distributed application"
}
output "distribution_fqdn" {
value = aws_cloudfront_distribution.default.domain_name
description = "FQDN pointing to the distribution"
}
output "etag" {
value = aws_cloudfront_distribution.default.etag
description = "Current version of the distribution's information"
}
output "bucket_arn" {
value = module.origin_bucket.arn
description = "ARN of the origin bucket"
}
output "bucket_name" {
value = module.origin_bucket.name
description = "Name of the origin bucket"
}
output "status" {
value = aws_cloudfront_distribution.default.status
description = "Current status of the distribution"
}
output "okta_client_id" {
value = try(okta_app_oauth.default[0].client_id, null)
description = "Okta App Client ID"
}
output "jwt_public_key" {
value = try(tls_private_key.default[0].public_key_pem, null)
description = "The JWT public key"
}