S3 block all public access configuration per default
Starting form April 2023 (Link to AWS blog), All new created S3 buckets will have block public access configuration enabled per default.
The default configuration looks similar to this terraform code
resource "aws_s3_bucket_public_access_block" "example" {
  bucket = aws_s3_bucket.example.id
  block_public_acls       = true
  block_public_policy     = true
  ignore_public_acls      = true
  restrict_public_buckets = true
}