-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
no longer hardcoding user principal in README example parameters
- Loading branch information
1 parent
d4b75c9
commit bb8e730
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,9 @@ $publishedBp = Get-AzBlueprint -ManagementGroupId "DevMG" -Name "Boilerplate" -L | |
$rgHash = @{ name="MyBoilerplateRG"; location = "eastus" } | ||
# all other (non-rg) parameters are listed in a single hashtable, with a key/value pair for each parameter | ||
$parameters = @{ principalIds="caeebed6-cfa8-45ff-9d8a-03dba4ef9a7d" } | ||
$user = Get-AzADUser -UserPrincipalName "[email protected]" | ||
$parameters = @{ principalIds=$user.Id } | ||
# All of the resource group artifact hashtables are themselves grouped into a parent hashtable | ||
# the 'key' for each item in the table should match the RG placeholder name in the blueprint | ||
|