Does the solution meet the goal?

Note: This question is part of a series of questions that present the same scenario. Each question in the series
contains a unique solution that might meet the stated goals. Some question sets might have more than one
correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will
not appear in the review screen.
You are designing the deployment of resources in Azure.
You plan to use templates to customize deployment options.You need to ensure that Azure services are deployed and updated identically.
Solution: You customize the parameters element of the template.
Does the solution meet the goal?

Note: This question is part of a series of questions that present the same scenario. Each question in the series
contains a unique solution that might meet the stated goals. Some question sets might have more than one
correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will
not appear in the review screen.
You are designing the deployment of resources in Azure.
You plan to use templates to customize deployment options.You need to ensure that Azure services are deployed and updated identically.
Solution: You customize the parameters element of the template.
Does the solution meet the goal?

A.
Yes

B.
No



Leave a Reply 3

Your email address will not be published. Required fields are marked *


spguru

spguru

The answer seems correct based on https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-authoring-templates

You do not have to provide parameters in your template, but without parameters your template would always deploy the same resources with the same names, locations, and properties.

In this example parameters are modified, hence azure services should not end up being the same.

fiber

fiber

But you can see it in another way, if you change the parameters of the template, the Azure services are NOT deployed and updated identically.

McEphin

McEphin

I believe the answer is correct. Parameters allow you to change things as you deploy a template.


In the parameters section of the template, you specify which values you can input when deploying the resources. These parameter values enable you to customize the deployment by providing values that are tailored for a particular environment (such as dev, test, and production).

https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-authoring-templates

Parameters are values you pass in during deployment.

Resources define the resources that are deployed or updated.
So, if the question said you customize the resources section, does this do what you want then the answer would be yes.