PSE-PRISMACLOUD · Question #113
Which two statements are true about CloudFormation? (Choose two.)
The correct answer is C. CloudFormation templates can be written in JSON or YAML D. CloudFormation is a declarative orchestration tool. CloudFormation is a declarative orchestration tool (D), meaning you describe the desired end state of your infrastructure and AWS figures out how to get there - you don't write step-by-step instructions. Templates are authored in either JSON or YAML (C), giving developers…
Question
Which two statements are true about CloudFormation? (Choose two.)
Options
- ACloudFormation is a procedural configuration management tool.
- BCloudFormation templates can be used on both Amazon Web Services and Microsoft Azure
- CCloudFormation templates can be written in JSON or YAML
- DCloudFormation is a declarative orchestration tool.
How the community answered
(21 responses)- A5% (1)
- B5% (1)
- C90% (19)
Explanation
CloudFormation is a declarative orchestration tool (D), meaning you describe the desired end state of your infrastructure and AWS figures out how to get there - you don't write step-by-step instructions. Templates are authored in either JSON or YAML (C), giving developers flexibility in format. Option A is wrong because "procedural" describes tools like Ansible scripts or shell scripts where you define the sequence of steps; CloudFormation is the opposite. Option B is wrong because CloudFormation is AWS-native only - it has no support for Azure (that would be a multi-cloud tool like Terraform).
Memory tip: Think "CloudFormation = Declare what you want, JSON/YAML to say it" - the two things that make it unique are its declarative nature and its dual-format template support.
Topics
Community Discussion
No community discussion yet for this question.