File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
infrastructure/terraform/components/app Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,10 @@ resource "aws_cloudfront_distribution" "main" {
2424 ssl_support_method = " sni-only"
2525 }
2626
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- # }
27+ logging_config {
28+ bucket = module. s3bucket_cf_logs . bucket_regional_domain_name
29+ include_cookies = false
30+ }
3231
3332 origin {
3433 domain_name = module. backend_api . download_bucket_regional_domain_name
Original file line number Diff line number Diff line change @@ -65,9 +65,10 @@ module "s3bucket_cf_logs" {
6565 data . aws_iam_policy_document . s3bucket_cf_logs . json
6666 ]
6767
68- bucket_logging_target = {
69- bucket = local.s3_buckets[" access_logs" ][" id" ]
70- }
68+ # Ignore access logs while we prove out deploying
69+ # bucket_logging_target = {
70+ # bucket = local.s3_buckets["access_logs"]["id"]
71+ # }
7172
7273 public_access = {
7374 block_public_acls = true
You can’t perform that action at this time.
0 commit comments