Skip to content

Commit

Permalink
Fix brackets in database.tf; fix linting in worker.tf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Grayson committed Oct 2, 2023
1 parent b0b6dc8 commit 7d626ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infrastructure/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ resource "aws_s3_bucket_policy" "pe_db_backups_bucket" {
}
}
}
}]
]
})
}

Expand Down
8 changes: 4 additions & 4 deletions infrastructure/worker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -357,17 +357,17 @@ resource "aws_s3_bucket_policy" "export_bucket" {
"Version" = "2012-10-17"
"Statement" = [
{
Sid = "Require SSL for Requests"
Effect = "Deny"
Sid = "Require SSL for Requests"
Effect = "Deny"
Principal = "*"
Action = "s3:*"
Action = "s3:*"
Resource = [
aws_s3_bucket.export_bucket.arn,
"${aws_s3_bucket.export_bucket.arn}/*"
]
Condition = {
Bool = {
"aws:SecureTransport": false
"aws:SecureTransport" : false
}
}
}
Expand Down

0 comments on commit 7d626ff

Please sign in to comment.