Skip to content

Commit a13d86e

Browse files
committed
edits
1 parent 3bb8e91 commit a13d86e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

learn-pr/azure/child-extension-bicep-templates/includes/4-exercise-define-child-resources.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
[!INCLUDE [Sandbox explanation](../../includes/azure-template-exercise-sandbox-subscription.md)]
22

3-
You're starting to work on your R&D team's requests, and you decide to start by building an Azure Cosmos DB database for the toy drone's test data. In this exercise, you create the Azure Cosmos DB account and two child resources, one by using the `parent` property and the other as a nested resource.
3+
You're starting to work on your R&D team's requests. You decide to start by creating an Azure Cosmos DB database for the toy drone's test data. In this exercise, you create the Azure Cosmos DB account and two child resources. You create one child resource by using the `parent` property and the other as a nested resource.
44

55
During the process, you:
66

77
> [!div class="checklist"]
8-
> * Create a Bicep file that deploys a Cosmos DB account.
9-
> * Add a database and container, which are child resources of the Cosmos DB account.
8+
> * Create a Bicep file that deploys an Azure Cosmos DB account.
9+
> * Add a database and container, both of which are child resources of the Azure Cosmos DB account.
1010
> * Deploy the template and verify the deployment.
1111
1212
[!INCLUDE [Install the Bicep extension for Visual Studio Code](../../includes/azure-template-bicep-exercise-vscode-extension.md)]
1313

1414
## Create a Bicep template that contains an Azure Cosmos DB account
1515

16-
First, you create a new Bicep template with an Azure Cosmos DB account. To do so:
16+
First, you create a new Bicep template that contains an Azure Cosmos DB account. To do so:
1717

1818
1. Open Visual Studio Code.
1919

2020
1. Create a new file called *main.bicep*.
2121

2222
1. Save the empty file so that Visual Studio Code loads the Bicep tooling.
2323

24-
You can either select **File** > **Save As** or press <kbd>Ctrl+S</kbd> in Windows (<kbd>⌘+S</kbd> on macOS). Be sure to remember where you saved the file. For example, you might want to create a *scripts* folder to save it in.
24+
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 saved the file. For example, you might want to create a *scripts* folder to save it in.
2525

2626
1. Add the following content to the file. It's a good idea to enter it manually rather than copy and paste it. That way, you can see how the tooling helps you write your Bicep files.
2727

0 commit comments

Comments
 (0)