Skip to content

Commit 52461de

Browse files
committed
fix formatting issues
1 parent 8e5962d commit 52461de

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-resource-manager/bicep/create-resource-group.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ You can use Bicep to create a new resource group. This article shows you how to
1111

1212
## Define resource group
1313

14-
To create a resource group, define a [Microsoft.Resources/resourceGroups](/azure/templates/microsoft.resources/allversions) resource with a name and location for the resource group.
14+
To create a resource group with Bicep, define a [Microsoft.Resources/resourceGroups](/azure/templates/microsoft.resources/allversions) resource with a name and location for the resource group.
1515

16-
The following example creates an empty resource group. Notice that its target scope is `subscription`.
16+
The following example shows a Bicep file that creates an empty resource group. Notice that its target scope is `subscription`.
1717

1818
```bicep
1919
targetScope='subscription'
@@ -50,11 +50,11 @@ New-AzSubscriptionDeployment `
5050
-resourceGroupLocation centralus
5151
```
5252

53-
### Create resource group and resources
53+
## Create resource group and resources
5454

5555
To create the resource group and deploy resources to it, add a module that defines the resources to deploy to the resource group. Set the scope for the module to the symbolic name for the resource group you create. You can deploy to up to 800 resource groups.
5656

57-
The following example creates a resource group, and deploys a storage account to the resource group. Notice that the `scope` property for the module is set to `newRG`, which is the symbolic name for the resource group that is being created.
57+
The following example shows a Bicep file that creates a resource group, and deploys a storage account to the resource group. Notice that the `scope` property for the module is set to `newRG`, which is the symbolic name for the resource group that is being created.
5858

5959
```bicep
6060
targetScope='subscription'
@@ -98,7 +98,7 @@ resource storageAcct 'Microsoft.Storage/storageAccounts@2022-09-01' = {
9898

9999
## Create resource group during resource group deployment
100100

101-
You can also create a resource group during a resource group level deployment. For that scenario, you deploy to an existing resource group and switch to the level of a subscription to create a resource group. The following template creates a new resource group in the specified subscription. The module that creates the resource group is the same as the example that creates the resource group.
101+
You can also create a resource group during a resource group level deployment. For that scenario, you deploy to an existing resource group and switch to the level of a subscription to create a resource group. The following Bicep file creates a new resource group in the specified subscription. The module that creates the resource group is the same as the example that creates the resource group.
102102

103103
```bicep
104104
param secondResourceGroup string

0 commit comments

Comments
 (0)