Skill 3.1 Automate Deployment of Virtual Machines (VM) by using Azure Resource Manager Templates Flashcards
Describe VM Scale sets
Provide the unique ability to scale out certain types of workloads to handle large processing problems, and they optimize cost by only running instances when needed
Describe Azure REsource manager templates
authored using JSON and provide the ability to define the configuration of resoures, such as virtual machines, storage accounts, and so on in a declarative manner
What is required to deploy a virtual machine in Azure
A virtual Network
What is modifications are needed to add a public IP address to a virtual machine
define a parameter that the user will use to specify a unique DNS name for the public IP while the second is to add it
What are the two different deployment modes supported by ARM
Incremental
Complete
Describe the incremental ARM deployment mode
ARM leaves unchanged resources that exist in teh resource group but aren’t in the template. It will update resources in the resource group if the settings in teh template differ from what is deployed
Descibe the complete ARM deployment model
ARM will delete resources that exist in the resource group that are not in the template. Helpful if you need to remove a resource from Azure and you want to make sure your template matches deployment.
What is the default mode for ARM deployments
Incremental
How can templates be deployed
Azure Portal, command line tools, or directly using the rest API