You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/azure/deploy-resources-scopes-bicep/8-knowledge-check.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ quiz:
42
42
- content: "`targetScope = 'managementGroup'`"
43
43
isCorrect: true
44
44
explanation: |
45
-
Correct. You should deploy the role definition to the root management group, so that it is inherited by all your Azure resources throughout your organization.
45
+
Correct. You should deploy the role definition to the root management group, so that all your Azure resources throughout your organization inherit it.
46
46
Role definitions can't be created at the tenant scope.
Copy file name to clipboardExpand all lines: learn-pr/azure/deploy-resources-scopes-bicep/includes/1-introduction.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ Here's a diagram that shows how these components fit within their Azure subscrip
10
10
11
11
:::image type="content" source="../media/1-architecture-diagram.png" alt-text="Diagram that shows an Azure subscription, a policy, and a resource group containing a virtual network." border="false":::
12
12
13
-
You know the R&D team has recently been given a lot of new funding, so it's likely to have more secret projects in the future. You decide to create reusable templates for each of its special projects.
13
+
You know the R&D team has recently been given new funding, so it's likely to have more secret projects in the future. You decide to create reusable templates for each of its special projects.
14
14
15
15
## What will we be doing?
16
16
17
-
In this module, you'll learn about the various scopes to which Azure resources can be deployed and some of the common resources that are deployed outside resource groups. You'll create a Bicep file to deploy to a subscription and a resource group. You'll also create a Bicep file to deploy to a management group. In the process, you'll learn about several features of Bicep, including how to:
17
+
In this module, you learn about the various scopes to which Azure resources can be deployed and some of the common resources that are deployed outside resource groups. You create a Bicep file to deploy to a subscription and a resource group. You also create a Bicep file to deploy to a management group. In the process, you learn about several features of Bicep, including how to:
18
18
19
19
- Set the scope of a Bicep file by using the `targetScope` keyword.
20
20
- Use modules and the `scope` keyword to deploy your resources to various scopes within a single deployment.
@@ -33,11 +33,11 @@ You should be familiar with:
33
33
- Child and extension resources.
34
34
35
35
> [!NOTE]
36
-
> In this module, you'll build on your knowledge of extension resources. If you need a refresher, see [Deploy child and extension resources by using Bicep](xref:learn.azure.child-extension-bicep-templates).
36
+
> In this module, you build on your knowledge of extension resources. If you need a refresher, see [Deploy child and extension resources by using Bicep](xref:learn.azure.child-extension-bicep-templates).
37
37
38
-
To follow along with the exercises in the module, you'll need:
38
+
To follow along with the exercises in the module, you need:
39
39
40
-
- An Azure account, with the ability to create subscription-level resources. For one exercise, which is optional, you'll need to be able to create management groups and policies.
40
+
- An Azure account, with the ability to create subscription-level resources. For one exercise, which is optional, you need to be able to create management groups and policies.
41
41
> [!TIP]
42
42
> If you can't meet these requirements with your current Azure account, you can get a [free trial](https://azure.microsoft.com/free/?azure-portal=true) and create a new Azure subscription and tenant.
43
43
-[Visual Studio Code](https://code.visualstudio.com), installed locally.
0 commit comments