CCSP Cloud Data Security • Set 4
CCSP Cloud Data Security Practice Test 4 — 15 questions with explanations. Free, no signup.
The exhibit shows a bucket policy that grants public read access. What is the most effective way to remove this public access?
Refer to the exhibit.
```
{
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::public-bucket/*"
}
]
}
```
After applying this bucket policy, the owner notices that the bucket is publicly accessible. Which additional configuration must be adjusted to make the bucket private?