Skip to content

Commit 6ad43d0

Browse files
authored
pencil edits
1 parent c85ee14 commit 6ad43d0

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
@@ -69,7 +69,7 @@ The path can be either a local file or a file in a registry. The local file can
6969

7070
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.
7171

72-
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.
72+
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, a unique module name will be generated automatically.
7373

7474
The following example concatenates the deployment name to the module name. If you provide a unique name for the deployment, the module name is also unique.
7575

@@ -80,7 +80,7 @@ module stgModule 'storageAccount.bicep' = {
8080
}
8181
```
8282

83-
Not providing any module name is also valid. A GUID will be generate as the module name.
83+
Not providing any module name is also valid. A GUID will be generated as the module name.
8484

8585
```bicep
8686
module stgModule 'storageAccount.bicep' = {

0 commit comments

Comments
 (0)