SOA-C02 Reliability and Business Continuity • Set 14
SOA-C02 Reliability and Business Continuity Practice Test 14 — 15 questions with explanations. Free, no signup.
A SysOps administrator deploys the above CloudFormation template. The stack creation fails with an error. What is the most likely reason?
Refer to the exhibit.
```
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"EC2Instance": {
"Type": "AWS::EC2::Instance",
"Properties": {
"ImageId": "ami-0abcdef1234567890",
"InstanceType": "t2.micro",
"AvailabilityZone": "us-east-1a"
}
},
"EBSVolume": {
"Type": "AWS::EC2::Volume",
"Properties": {
"Size": 10,
"AvailabilityZone": "us-east-1a"
}
},
"VolumeAttachment": {
"Type": "AWS::EC2::VolumeAttachment",
"Properties": {
"InstanceId": { "Ref": "EC2Instance" },
"VolumeId": { "Ref": "EBSVolume" }
}
}
}
}
```