Skip to content

Commit aee4c3e

Browse files
committed
edits
1 parent a95cf63 commit aee4c3e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

learn-pr/azure/child-extension-bicep-templates/8-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ quiz:
4444
explanation: Incorrect. You can define child resources by using a nested resource definition, but you can't define extension resources in this way.
4545
- content: Which of these statements is true?
4646
choices:
47-
- content: Using the `existing` keyword on a resource declaration means that Bicep redeploys the resource.
47+
- content: When you use the `existing` keyword on a resource declaration, Bicep redeploys the resource.
4848
isCorrect: false
4949
explanation: Incorrect. The `existing` keyword means that Bicep doesn't attempt to deploy the resource. Use the keyword to refer to the resource within your Bicep template.
5050
- content: All resource definitions in a Bicep file need to have an SKU property set, even existing resources.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ First, you create a new Bicep template that contains an Azure Cosmos DB account.
3030
> [!TIP]
3131
> Bicep is strict about where you put line breaks, so be sure to add line breaks only where shown here.
3232
33-
This Bicep template deploys an Azure Cosmos DB account that is the parent resource you build upon in the next section.
33+
This Bicep template deploys an Azure Cosmos DB account that's the parent resource you build upon in the next section.
3434

3535
1. Save the changes to the file.
3636

@@ -83,7 +83,7 @@ After you complete the preceding steps, your _main.bicep_ file should look like
8383

8484
:::code language="bicep" source="code/4-complete.bicep" :::
8585

86-
If it doesn't, either copy the example or adjust your template to match the example.
86+
If it doesn't look the same, either copy the example or adjust your template to match the example.
8787

8888
## Deploy the template to Azure
8989

@@ -93,7 +93,7 @@ If it doesn't, either copy the example or adjust your template to match the exam
9393

9494
### Deploy the template to Azure
9595

96-
Run the following code from the terminal in Visual Studio Code to deploy the Bicep template to Azure. This operation can take a minute or two to complete, before you see a successful deployment.
96+
Run the following code from the terminal in Visual Studio Code to deploy the Bicep template to Azure. It might take a minute or two before you see a successful deployment.
9797

9898
```azurecli
9999
az deployment group create --name main --template-file main.bicep
@@ -107,7 +107,7 @@ az deployment group create --name main --template-file main.bicep
107107

108108
### Deploy the template to Azure
109109

110-
Deploy the template to Azure by using the following Azure PowerShell command in the terminal. This operation can take a minute or two to complete, before you see a successful deployment.
110+
Deploy the template to Azure by using the following Azure PowerShell command in the terminal. It might take a minute or two before you see a successful deployment.
111111

112112
```azurepowershell
113113
New-AzResourceGroupDeployment -Name main -TemplateFile main.bicep
@@ -120,7 +120,7 @@ New-AzResourceGroupDeployment -Name main -TemplateFile main.bicep
120120
1. Go to the [Azure portal](https://portal.azure.com?azure-portal=true) and make sure you're in the sandbox subscription:
121121

122122
1. Select your avatar in the upper-right corner of the page, and then select **Switch directory**.
123-
1. A list of directories appears. Select the **Switch** button next to Microsoft Learn Sandbox.
123+
1. A list of directories appears. Select the **Switch** button next to **Microsoft Learn Sandbox**.
124124

125125
1. On the home page, select **Resource groups**. The **Resource groups** pane appears.
126126

@@ -138,4 +138,4 @@ New-AzResourceGroupDeployment -Name main -TemplateFile main.bicep
138138

139139
:::image type="content" source="../media/4-deployment-details.png" alt-text="Screenshot of the Azure portal interface for the specific deployment, with three Cosmos DB resources listed." border="true":::
140140

141-
1. Leave the page open in your browser, so you can check on deployments again later.
141+
1. Leave the page open in your browser so you can check on deployments again later.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Notice that the example uses the `scope` property with the Azure Cosmos DB accou
3636

3737
## Extension resource IDs
3838

39-
An ID for an extension resource is slightly different than IDs for other resources. It consists of its parent resource ID, the separator `/providers/`, and the extension resource ID.
39+
An ID for an extension resource is slightly different from IDs for other resources. It consists of its parent resource ID, the separator `/providers/`, and the extension resource ID.
4040

4141
Say you deployed the previously mentioned Azure Cosmos DB account, and the account was named `toyrnd`. Here's what the lock's resource ID would look like:
4242

learn-pr/azure/child-extension-bicep-templates/includes/6-work-with-existing-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Resources often need to refer to the properties of other resources. For example,
7676
> [!TIP]
7777
> It's a best practice to look up keys from other resources in this way instead of passing them around through outputs. You'll always get the most up-to-date data. Also, it's important to note that outputs aren't designed to handle secure data like keys.
7878
79-
The way that you access the information about a resource depends on the type of information you're getting. If it's a property that isn't secure, you ordinarily use only the `properties` of the resource. The following example template deploys an Azure Functions application and uses the access details (*instrumentation key*) for an existing Application Insights instance:
79+
The way that you access the information about a resource depends on the type of information you're getting. If it's a property that isn't considered sensitive, you ordinarily use only the `properties` of the resource. The following example template deploys an Azure Functions application and uses the access details (*instrumentation key*) for an existing Application Insights instance:
8080

8181
:::code language="bicep" source="code/6-existing-properties.bicep" highlight="1-3,15":::
8282

learn-pr/azure/includes/azure-template-exercise-sandbox-sign-in-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.author: jgao
1212
Connect-AzAccount
1313
```
1414
15-
A browser opens so that you can sign in to your Azure account. The browser might be opened in the background.
15+
A browser opens so that you can sign in to your Azure account. The browser might open in the background.
1616
17-
1. After you've signed in to Azure, the terminal displays a list of the subscriptions associated with this account. If you've activated the sandbox, a subscription named *Concierge Subscription* is displayed. Select it for the rest of the exercise.
17+
1. After you sign in to Azure, the terminal displays a list of the subscriptions associated with this account. If you activated the sandbox, a subscription named *Concierge Subscription* is displayed. Select it for the rest of the exercise.
1818
1919
If you've used more than one sandbox recently, the terminal might display more than one instance of *Concierge Subscription*. In this case, use the next two steps to set one as the default subscription.
2020

0 commit comments

Comments
 (0)