Deploy Azure infrastructure by using JSON ARM templates Flashcards
ARM template file structure - schema
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
ARM template file structure - contentVersion
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.
ARM template file structure - apiProfile
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.
ARM template file structure - parameters
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.
ARM template file structure - variables
An optional section where you define values that are used to simplify template language expressions.
ARM template file structure - functions
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.
ARM template file structure - resources
A required section that defines the actual items you want to deploy or update in a resource group or a subscription.
ARM template file structure - output
An optional section where you specify the values that will be returned at the end of the deployment.