Skip to content

Commit 6e0e68f

Browse files
committed
Line edits
1 parent 25af7d4 commit 6e0e68f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

learn-pr/azure/arm-template-whatif/includes/4-exercise-what-if.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ You start with an existing template that your team has been using. The template
3131

3232
1. Create a new file called *azuredeploy.json*.
3333

34-
1. Save the empty file so that Visual Studio Code loads the ARM template tooling.
35-
34+
1. Save the empty file so that Visual Studio Code loads the ARM template tooling.
35+
3636
You can either select **File** > **Save As** or select <kbd>Ctrl+S</kbd> in Windows (<kbd>⌘+S</kbd> on macOS). Be sure to remember where you've saved the file. For example, you might want to create a *scripts* folder to save it in.
3737

3838
1. Copy the following code into *azuredeploy.json*.
@@ -49,8 +49,8 @@ You start with an existing template that your team has been using. The template
4949

5050
1. Create a new file called *main.bicep*.
5151

52-
1. Save the empty file so that Visual Studio Code loads the Bicep tooling.
53-
52+
1. Save the empty file so that Visual Studio Code loads the Bicep tooling.
53+
5454
You can either select **File** > **Save As** or select <kbd>Ctrl+S</kbd> in Windows (<kbd>⌘+S</kbd> on macOS). Be sure to remember where you've saved the file. For example, you might want to create a *scripts* folder to save it in.
5555

5656
1. Copy the following code into *main.bicep*.
@@ -173,7 +173,7 @@ To validate that your deployment has been created and sent to Azure, go to the [
173173

174174
::: zone pivot="jsonpowershell,jsoncli"
175175

176-
1. In the *azuredeploy.json* file in Visual Studio Code, delete the tag named `Owner` and its value. After you're done, the `tags` property of the virtual network should look like this:
176+
1. In the *azuredeploy.json* file in Visual Studio Code, delete the tag named `Owner` and its value. After you're done, the `tags` property of the virtual network should look like this:
177177

178178
:::code language="json" source="code/4-template-after.json" range="12-14" :::
179179

@@ -191,7 +191,7 @@ To validate that your deployment has been created and sent to Azure, go to the [
191191

192192
::: zone pivot="biceppowershell,bicepcli"
193193

194-
1. In the *main.bicep* file in Visual Studio Code, delete the tag named `Owner` and its value. After you're done, the `tags` property of the virtual network should look like this:
194+
1. In the *main.bicep* file in Visual Studio Code, delete the tag named `Owner` and its value. After you're done, the `tags` property of the virtual network should look like this:
195195

196196
:::code language="bicep" source="code/4-template-after.bicep" range="6-8" :::
197197

@@ -273,9 +273,9 @@ The what-if output is similar to the following one:
273273

274274
Notice that the result is color-coded in addition to having a prefix:
275275

276-
- Purple and **~** for any modifications
277-
- Green and **+** for new resources to be created
278-
- Orange and **-** for deletions
276+
* Purple and **~** for any modifications
277+
* Green and **+** for new resources to be created
278+
* Orange and **-** for deletions
279279

280280
## Remove the resources in the template
281281

0 commit comments

Comments
 (0)