forked from Azure/missionlz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AVD Add-On: Integrate teir3 (Azure#1030)
* Removed unnecessary params * Added default values to params * Removed unnecessary params * Removed unnecessary params * Removed unnecessary params * Removed unnecessary properties * Changed ip config names, merged NIC & VM deployments * Removed unnecessary params * Changed ip config name, Updated params * Simplified subnets array, Removed unnecessary params * Removed unnecessary params * Removed unnecessary param * Fixed params, Moved naming * Moved naming * Added param, Moved naming * Added key vault diagnostics * Deleted file * Renamed files, Updated naming * Updated params, Added parent property * Added least privilege role assignment * Updated naming * Updated deployment scopes * Fixed scope, Updated params * Added spacing * Updated naming * Updated naming * Fixed access modes * Moved names to naming deployment * Updated naming * Updated naming * Updated naming * Updated scope & naming * Updated scope & params * Compiled bicep changes * Fixed names for disks & NICs * GitHub Action: Build Bicep to JSON * Fixed NIC name * GitHub Action: Build Bicep to JSON * Fixed spacing * Updated comment * Compiled bicep changes * GitHub Action: Build Bicep to JSON * Fixed VM naming convention * GitHub Action: Build Bicep to JSON * Compiled bicep changes * GitHub Action: Build Bicep to JSON * Compiled bicep changes * GitHub Action: Build Bicep to JSON * Fixed VM name * GitHub Action: Build Bicep to JSON * Fixed names * GitHub Action: Build Bicep to JSON * More name fixes * GitHub Action: Build Bicep to JSON * Fixed pip names for diag settings * GitHub Action: Build Bicep to JSON * Fixed pip name * GitHub Action: Build Bicep to JSON * Fixed firewall name * GitHub Action: Build Bicep to JSON * Renamed parent folder * Renamed parent folder * Fixed resource name * Renamed parent folder * Renamed parent folder * Added param * Added tier3 * Complied bicep changes * Added tier3 to AVD add-on * Compiled bicep changes * Renamed folder * Fixed diagnostic setting names * Updated output * Sorted params, Removed params * Removed params, Fixed resource names * Added an output * Fixed storage account name * Fixed names * Fixed file name * Fixed params * Updated params, Removed unnecessary deployments * Added params * Added params * Sorted params, Added params, Fixed name * Compiled bicep changes * Added unique token to storage account names * Compiled bicep changes * GitHub Action: Build Bicep to JSON --------- Co-authored-by: github-actions <[email protected]>
- Loading branch information
Showing
141 changed files
with
30,143 additions
and
31,239 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...tualDesktop/modules/cleanUp/cleanUp.bicep → ...ual-desktop/modules/cleanUp/cleanUp.bicep
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
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
src/bicep/add-ons/azure-virtual-desktop/modules/common/roleAssignment.bicep
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,12 @@ | ||
param principalId string | ||
param principalType string | ||
param roleDefinitionId string | ||
|
||
resource roleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { | ||
name: guid(principalId, roleDefinitionId, resourceGroup().id) | ||
properties: { | ||
roleDefinitionId: resourceId('Microsoft.Authorization/roleDefinitions', roleDefinitionId) | ||
principalId: principalId | ||
principalType: principalType | ||
} | ||
} |
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
Oops, something went wrong.