Skip to content

Commit c11d0ee

Browse files
authored
Apply suggestions from code review
1 parent 10435ff commit c11d0ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-resource-manager/bicep/modules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Use the symbolic name to reference the module in another part of the Bicep file.
6565

6666
The path can be either a local file or a file in a registry. The local file can be either a Bicep file or an ARM template for JSON. For more information, see [Path to a module](#path-to-a-module).
6767

68-
The `name` property is optional. It becomes the name of the nested deployment resource in the generated template. If no name is provided, a guid will be generated as the name for the nested deployment resource.
68+
The `name` property is optional. It becomes the name of the nested deployment resource in the generated template. If no name is provided, a GUID will be generated as the name for the nested deployment resource.
6969

7070
If a module with a static name is deployed concurrently to the same scope, there's the potential for one deployment to interfere with the output from the other deployment. For example, if two Bicep files use the same module with the same static name (`examplemodule`) and are targeted to the same resource group, one deployment might show the wrong output. If you're concerned about concurrent deployments to the same scope, give your module a unique name. Another way to ensure unique module names is to leave out the `name` property, an unique module name will be generated automatically.
7171

@@ -78,7 +78,7 @@ module stgModule 'storageAccount.bicep' = {
7878
}
7979
```
8080

81-
Not providing any module name is also valid. A guid will be generate as the module name.
81+
Not providing any module name is also valid. A GUID will be generate as the module name.
8282

8383
```bicep
8484
module stgModule 'storageAccount.bicep' = {

0 commit comments

Comments
 (0)