-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc9c84e
commit 3dabe0b
Showing
5 changed files
with
31 additions
and
3 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"experimentalFeaturesEnabled": { | ||
"extensibility": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
extension microsoftGraph | ||
|
||
// param location string = resourceGroup().location | ||
|
||
resource testgroup1 'Microsoft.Graph/[email protected]' = { | ||
displayName: 'Test Group 1' | ||
mailEnabled: false | ||
mailNickname: 'test-group-1' | ||
securityEnabled: true | ||
uniqueName: 'testgroup1' | ||
members: [ | ||
'730c65b5-18ac-4cbf-a922-2469d4366110' | ||
'0a27b6b7-2327-4ce6-94c8-78008693bbd9' | ||
] | ||
} | ||
|
||
// resource managedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30' = { | ||
// name: 'testUAMI007' | ||
// location: location | ||
// } |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
New-AzResourceGroup -Name entraBicepRG -Location eastus | ||
|
||
New-AzResourceGroupDeployment -ResourceGroupName entraBicepRG ` | ||
-TemplateFile ./entrademo.bicep |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.