Which section of the template should you edit so that the DNS of the load balancer is returned upon creation of the stack?
Parameters
Outputs
Mappings
Resources
Explanations:
The Parameters section is used to define input parameters for the CloudFormation stack but does not return values after stack creation.
The Outputs section is specifically designed to return values upon the completion of the stack creation, including the DNS name of the load balancer.
The Mappings section is used to define static values that can be referenced elsewhere in the template but does not provide output values after stack creation.
The Resources section defines the AWS resources to be created but does not return any values upon stack creation. Outputs must be defined separately.