-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
61 lines (46 loc) · 1.43 KB
/
output.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
# outputs, all-caps ones generally match heroku config var that should be set to value of output
output "AWS_MEDIACONVERT_ROLE_ARN" {
value = aws_iam_role.mediaconvert_role.arn
}
output "S3_BUCKET_DERIVATIVES" {
value = aws_s3_bucket.derivatives.bucket
}
output "S3_BUCKET_DERIVATIVES_VIDEO" {
value = aws_s3_bucket.derivatives_video.bucket
}
output "S3_BUCKET_ON_DEMAND_DERIVATIVES" {
value = aws_s3_bucket.ondemand_derivatives.bucket
}
output "S3_BUCKET_ORIGINALS" {
value = aws_s3_bucket.originals.bucket
}
output "S3_BUCKET_ORIGINALS_VIDEO" {
value = aws_s3_bucket.originals_video.bucket
}
output "S3_BUCKET_UPLOADS" {
value = aws_s3_bucket.uploads.bucket
}
output "S3_BUCKET_DZI" {
value = aws_s3_bucket.dzi.bucket
}
output "RAILS_ASSET_HOST" {
value = aws_cloudfront_distribution.rails_static_assets.domain_name
}
output "CLOUDFRONT_KEY_PAIR_ID" {
value = aws_cloudfront_public_key.scihist-digicoll.id
}
output "S3_BUCKET_DERIVATIVES_VIDEO_HOST" {
value = aws_cloudfront_distribution.derivatives-video.domain_name
}
output "S3_BUCKET_DERIVATIVES_HOST" {
value = aws_cloudfront_distribution.derivatives.domain_name
}
output "S3_BUCKET_ORIGINALS_HOST" {
value = aws_cloudfront_distribution.originals.domain_name
}
output "S3_BUCKET_DZI_HOST" {
value = aws_cloudfront_distribution.dzi.domain_name
}
output "S3_BUCKET_ON_DEMAND_DERIVATIVES_HOST" {
value = aws_cloudfront_distribution.ondemand_derivatives.domain_name
}