acl is deprecated on aws_s3_bucket (#10944)

`acl` is a deprecated argument on `aws_s3_bucket`.

Identified by this job:
https://github.com/fleetdm/fleet/actions/runs/4585758981/jobs/8098079111#step:4:58
This commit is contained in:
KanchiMoe
2023-04-03 14:53:13 -04:00
committed by GitHub
parent e0e547f1a2
commit a0b10d4e49
@@ -44,13 +44,17 @@ resource "aws_s3_bucket_public_access_block" "osquery-results" {
resource "aws_s3_bucket" "osquery-status" { #tfsec:ignore:aws-s3-encryption-customer-key tfsec:ignore:aws-s3-enable-bucket-logging tfsec:ignore:aws-s3-enable-versioning
bucket = "${local.prefix}-loadtest-osquery-status-archive"
acl = "private"
#checkov:skip=CKV_AWS_18:dev env
#checkov:skip=CKV_AWS_144:dev env
#checkov:skip=CKV_AWS_21:dev env
}
resource "aws_s3_bucket_acl" "osquery-status" {
bucket = aws_s3_bucket.osquery-status.id
acl = "private"
}
resource "aws_s3_bucket_lifecycle_configuration" "osquery-status" {
bucket = aws_s3_bucket.osquery-status.id