scripts/deployments/Functions/Roles.ps1 (36 lines of code) (raw):
<#
----------------------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------------
#>
function Set-Roles {
param (
[Parameter(Mandatory = $true)]
$Context,
[Parameter(Mandatory = $true)]
[String] $RolesDirectory,
[Parameter(Mandatory = $true)]
[string[]] $RoleNames,
[Parameter(Mandatory = $true)]
[String] $ManagementGroupId
)
# Deployment
Write-Output "Deploying roles to management group: $ManagementGroupId"
Write-Output "Deploying role definitions from $RolesDirectory"
$DeploymentParameters = @{
assignableMgId = $ManagementGroupId
}
foreach ($RoleName in $RoleNames) {
$RoleDefinitionFilePath = "$RolesDirectory/$RoleName.bicep"
Write-Output "Deploying $RoleName ($RoleDefinitionFilePath)"
New-AzManagementGroupDeployment `
-ManagementGroupId $ManagementGroupId `
-Location $Context.DeploymentRegion `
-TemplateFile $RoleDefinitionFilePath `
-TemplateParameterObject $DeploymentParameters
}
}