Which of the following sections must exist in a Packer template?
Which of the following sections must exist in a Packer template?
In a Packer template, the 'builders' section is mandatory. This section defines the builders that Packer uses to create machine images. Without this section, Packer would not be able to proceed with the image creation process. Other sections like 'provisioners' and 'variables' are optional and enhance the functionality of the template, but they are not required for the template to function.
Builders are mandatory : https://www.packer.io/docs/templates
the correct answer is C see: https://packer.io/docs/templates/index.html ... Template Structure: ... builders (required) ... ... provisioners (optional) ...
The most important section is Builders
answer: C