acme-sandbox-raw

AWS · S3 · account sandbox (123456789012) · region us-east-1 · last observed 2026-04-16 04:12 UTC

Configuration

Bucket ACLpublic-read
Block public accessdisabled
Default encryptionSSE-S3 (AES-256)
VersioningEnabled
Object LockDisabled
LoggingEnabled → s3://acme-logs-bucket/
Tagsenv=sandbox owner=platform

Findings on this resource

SevRuleAge
CRITaws.s3.public-acl1d
HIGHaws.s3.block-public-access-off1d
MEDaws.s3.no-object-lock14d

Each finding links back to the exact config fragment that triggered it and a remediation snippet.

Relationships

3 inbound · 2 outbound (last scan)

DirectionRelationshipPeer
inboundwrites-tolambda:sandbox-ingest-fn
inboundreads-fromec2:i-0aa12 (sandbox)
inboundreads-fromec2:i-0bb34 (sandbox)
outboundlogged-tos3:acme-logs-bucket
outboundencrypted-withkms:alias/aws/s3 (default)

Remediation. block public access

aws s3api put-public-access-block \
  --bucket acme-sandbox-raw \
  --public-access-block-configuration \
  "BlockPublicAcls=true,IgnorePublicAcls=true,BlockPublicPolicy=true,RestrictPublicBuckets=true"

# Terraform
resource "aws_s3_bucket_public_access_block" "acme_sandbox_raw" {
  bucket                  = aws_s3_bucket.acme_sandbox_raw.id
  block_public_acls       = true
  ignore_public_acls      = true
  block_public_policy     = true
  restrict_public_buckets = true
}

After remediation, re-run the AWS connector sync. the finding will close automatically within 60 seconds.