100 days of azure day 20

Need assistance with the following task

This one has two parts:

  1. You need to edit the template file. This is pretty simple – just follow the instructions.
  2. You need to look up the resource group as directed, and figure out the command. Which is also straightforward; it will look something like this:
      az deployment group create \
    --resource-group kml_rg_main-SOME-RANDOM-LOOKING-STRING \
    --name arm-vnet-nautilus \
    --template-file vnet-deployment-template.json
    

using the parameters from the question.

Thank I got it done. My mistake was in the json file not putting commas in the correct spot. Copilot showed me what I did wrong. az deployment group validate is a great command to use before deploying