You are deploying three Azure VMS with an Azure Resource Manager (ARM) template. Which ARM function implements the iteration loop to provision the right number of VMs?json{ 'type': 'Microsoft.Compute/virtualMachines', 'name': '[concat('myvm', '______')]', 'apiVersion': '2016-04-30-preview', 'location': '[parameters('location')]', 'copy': ' ', 'name': 'virtualMachineLoop', 'count': '[parameters('numberOfInstances')]'},

🎲 Try a Random Question  |  Total Questions in Quiz: 54  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Microsoft Azure Quiz — practice the complete quiz, review flashcards, or try a random question.

Microsoft Azure MCQs For LinkedIn Skill Assessments.


You are deploying three Azure VMS with an Azure Resource Manager (ARM) template. Which ARM function implements the iteration loop to provision the right number of VMs?<br>json<br>{<br> 'type': 'Microsoft.Compute/virtualMachines',<br> 'name': '[concat('myvm', '______')]',<br> 'apiVersion': '2016-04-30-preview',<br> 'location': '[parameters('location')]',<br> 'copy': ' ',<br> 'name': 'virtualMachineLoop',<br> 'count': '[parameters('numberOfInstances')]'<br>},<br>