File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
infrastructure/terraform/components Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments