Skip to content

Commit 3a14348

Browse files
committed
CCM-9873: add access_logs bucket to acct outputs
1 parent 326733a commit 3a14348

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

infrastructure/terraform/components/acct/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ output "s3_buckets" {
1717
bucket = module.s3bucket_backup_reports.bucket
1818
id = module.s3bucket_backup_reports.id
1919
}
20+
access_logs = {
21+
arn = module.s3bucket_access_logs.arn
22+
bucket = module.s3bucket_access_logs.bucket
23+
id = module.s3bucket_access_logs.id
24+
}
2025
}
2126
}
2227

infrastructure/terraform/components/app/cloudfront_distribution_download.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ resource "aws_cloudfront_distribution" "main" {
2424
ssl_support_method = "sni-only"
2525
}
2626

27-
logging_config {
28-
bucket = module.s3bucket_cf_logs.bucket_regional_domain_name
29-
include_cookies = false
30-
}
27+
# Disable logging for now wile we prove out deploying via a pipeline.
28+
# logging_config {
29+
# bucket = module.s3bucket_cf_logs.bucket_regional_domain_name
30+
# include_cookies = false
31+
# }
3132

3233
origin {
3334
domain_name = module.backend_api.download_bucket_regional_domain_name

0 commit comments

Comments
 (0)