Deploy Azure infrastructure by using JSON ARM templates Flashcards

1
Q

ARM template file structure - schema

A

A required section that defines the location of the JSON schema file that describes the structure of JSON data. The version number you use depends on the scope of the deployment and your JSON editor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ARM template file structure - contentVersion

A

A required section that defines the version of your template (such as 1.0.0.0). You can use this value to document significant changes in your template to ensure you’re deploying the right template.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ARM template file structure - apiProfile

A

An optional section that defines a collection of API versions for resource types. You can use this value to avoid having to specify API versions for each resource in the template.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ARM template file structure - parameters

A

An optional section where you define values that are provided during deployment. These values can be provided by a parameter file, by command-line parameters, or in the Azure portal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ARM template file structure - variables

A

An optional section where you define values that are used to simplify template language expressions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ARM template file structure - functions

A

An optional section where you can define user-defined functions that are available within the template. User-defined functions can simplify your template when complicated expressions are used repeatedly in your template.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ARM template file structure - resources

A

A required section that defines the actual items you want to deploy or update in a resource group or a subscription.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

ARM template file structure - output

A

An optional section where you specify the values that will be returned at the end of the deployment.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly