Skip to content

Commit 3aed8f8

Browse files
Merge pull request #244279 from mumian/0707-guid
add the guid function algorithm information
2 parents c51b63e + d53a731 commit 3aed8f8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

articles/azure-resource-manager/bicep/bicep-functions-string.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,8 @@ Unique scoped to deployment for a resource group
536536
guid(resourceGroup().id, deployment().name)
537537
```
538538

539+
The `guid` function implements the algorithm from [RFC 4122 §4.3](https://www.ietf.org/rfc/rfc4122.txt). The original source can be found in [GuidUtility](https://github.com/LogosBible/Logos.Utility/blob/e7fc45123da090b8cf34da194a1161ed6a34d20d/src/Logos.Utility/GuidUtility.cs) with some modifications.
540+
539541
### Return value
540542

541543
A string containing 36 characters in the format of a globally unique identifier.

articles/azure-resource-manager/templates/template-functions-string.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,8 @@ Unique scoped to deployment for a resource group
457457
"[guid(resourceGroup().id, deployment().name)]"
458458
```
459459

460+
The `guid` function implements the algorithm from [RFC 4122 §4.3](https://www.ietf.org/rfc/rfc4122.txt). The original source can be found in [GuidUtility](https://github.com/LogosBible/Logos.Utility/blob/e7fc45123da090b8cf34da194a1161ed6a34d20d/src/Logos.Utility/GuidUtility.cs) with some modifications.
461+
460462
### Return value
461463

462464
A string containing 36 characters in the format of a globally unique identifier.

0 commit comments

Comments
 (0)