PAS-C01 Technology • Set 21
PAS-C01 Technology Practice Test 21 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. A CloudFormation template is used to launch an SAP application server. The stack creation succeeds, but the application server fails to start correctly. What is the most likely reason?
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"SAPApplicationServer": {
"Type": "AWS::EC2::Instance",
"Properties": {
"InstanceType": "r5.2xlarge",
"ImageId": "ami-0abcdef1234567890",
"UserData": "#!/bin/bash\nsleep 30\n/usr/sap/install/start_app_server.sh"
}
}
}
}