CS0-003 • Practice Test 29
Free CS0-003 practice test — 15 questions with explanations. Set 29. No signup required.
What is the net effect of the policy shown in the exhibit on requests from an IP address in the 10.0.0.0/8 range?
Refer to the exhibit.
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::confidential-data/*",
"Condition": {
"IpAddress": {
"aws:SourceIp": "10.0.0.0/8"
}
}
},
{
"Effect": "Deny",
"Action": "s3:*",
"Resource": "arn:aws:s3:::confidential-data/*"
}
]
}
```
A security analyst is reviewing an S3 bucket policy for an AWS environment.