A user is planning to use AWS Cloud formation for his automatic deployment requirements. Which
of the below mentioned components are required as a part of the template?
A.
Parameters
B.
Outputs
C.
Template version
D.
Resources
Explanation:
AWS Cloud formation is an application management tool which provides application modelling,
deployment, configuration, management and related activities. The template is a JSON-format,
text-based file that describes all the AWS resources required to deploy and run an application. It
can have option fields, such as Template Parameters, Output, Data tables, and Template file
format version. The only mandatory value is Resource. The user can define the AWS services
which will be used/ created by this template inside the Resource section
others are optional while Resources part is mandatory.
D
D
Resources are a mandatory part of the template as described here: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
So the answer is: D
D