DVA-C02 • Practice Exam 53
Free DVA-C02 practice exam — 20 questions with explanations. Set 53. No signup required.
A developer is troubleshooting a deployment failure in AWS CodePipeline. The deploy stage uses the above IAM policy for the service role. The pipeline fails when trying to update the Elastic Beanstalk environment. What is the most likely cause?
Refer to the exhibit.
```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"elasticbeanstalk:DescribeEnvironmentResources",
"elasticbeanstalk:UpdateEnvironment"
],
"Resource": "arn:aws:elasticbeanstalk:us-east-1:123456789012:environment/MyApp/MyEnv"
},
{
"Effect": "Deny",
"Action": "elasticbeanstalk:DeleteEnvironment",
"Resource": "*"
}
]
}
```