Skip to content

Commit

Permalink
Remove added s3_bucket_acls
Browse files Browse the repository at this point in the history
  • Loading branch information
aloftus23 committed Oct 5, 2023
1 parent a52901b commit 252e59a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 17 deletions.
9 changes: 0 additions & 9 deletions infrastructure/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,6 @@ resource "aws_s3_bucket_policy" "reports_bucket" {
})
}

resource "aws_s3_bucket_acl" "reports_bucket" {
bucket = aws_s3_bucket.reports_bucket.id
acl = "private"
}

resource "aws_s3_bucket_server_side_encryption_configuration" "reports_bucket" {
bucket = aws_s3_bucket.reports_bucket.id
rule {
Expand Down Expand Up @@ -304,10 +299,6 @@ resource "aws_s3_bucket_policy" "pe_db_backups_bucket" {
})
}

resource "aws_s3_bucket_acl" "pe_db_backups_bucket" {
bucket = aws_s3_bucket.pe_db_backups_bucket.id
acl = "private"
}
resource "aws_s3_bucket_server_side_encryption_configuration" "pe_db_backups_bucket" {
bucket = aws_s3_bucket.pe_db_backups_bucket.id
rule {
Expand Down
4 changes: 0 additions & 4 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ resource "aws_s3_bucket_policy" "logging_bucket" {
})
}

resource "aws_s3_bucket_acl" "logging_bucket" {
bucket = aws_s3_bucket.logging_bucket.id
acl = "private"
}
resource "aws_s3_bucket_server_side_encryption_configuration" "logging_bucket" {
bucket = aws_s3_bucket.logging_bucket.id
rule {
Expand Down
4 changes: 0 additions & 4 deletions infrastructure/worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -375,10 +375,6 @@ resource "aws_s3_bucket_policy" "export_bucket" {
})
}

resource "aws_s3_bucket_acl" "export_bucket" {
bucket = aws_s3_bucket.export_bucket.id
acl = "private"
}
resource "aws_s3_bucket_server_side_encryption_configuration" "export_bucket" {
bucket = aws_s3_bucket.export_bucket.id
rule {
Expand Down

0 comments on commit 252e59a

Please sign in to comment.