Skip to content

Commit

Permalink
Update module_s3_bucket_cloudfront_logging.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcallis committed Aug 18, 2022
1 parent 948b800 commit 1d40a79
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions module_s3_bucket_cloudfront_logging.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,16 @@ module "bucket_cloudwatch_logs_backup" {
ignore_public_acls = true

versioning = {
enabled = false
mfa_delete = false
status = "Enabled"
mfa_delete = "Disabled"
}

cors_rule = {
allowed_headers = ["Authorization"]
allowed_methods = ["GET"]
allowed_origins = ["*"]
expose_headers = []
max_age_seconds = 3000
}

}

0 comments on commit 1d40a79

Please sign in to comment.