Dump-AzureRoles.ps1

This commit is contained in:
mgeeky 2022-01-25 21:53:51 +01:00
parent 529aa50972
commit 3e382aa907

View File

@ -158,7 +158,7 @@ Second part contains full definitions of each role along with their permissions
$count = 0 $count = 0
$azureRbacRoles | % { $azureRbacRoles | % {
$count += 1 $count += 1
#Write-Host "| $count | ``$($_.Name)`` | _$($_.Description)_ | ``$($_.Id)`` |" Write-Host "| $count | ``$($_.Name)`` | _$($_.Description)_ | ``$($_.Id)`` |"
} }
Write-Host @" Write-Host @"
@ -171,12 +171,12 @@ Second part contains full definitions of each role along with their permissions
|---|----------|-----------------|--------| |---|----------|-----------------|--------|
"@ "@
#$azureADRoles = (Get-AzureADDirectoryRoleTemplate | sort -property displayname) $azureADRoles = (Get-AzureADDirectoryRoleTemplate | sort -property displayname)
$count = 0 $count = 0
$azureADRoles | % { $azureADRoles | % {
$count += 1 $count += 1
#Write-Host "| $count | ``$($_.DisplayName)`` | _$($_.Description)_ | ``$($_.ObjectId)`` |" Write-Host "| $count | ``$($_.DisplayName)`` | _$($_.Description)_ | ``$($_.ObjectId)`` |"
} }
Write-Host @" Write-Host @"
@ -204,6 +204,6 @@ This section contains detailed definitions of each role along with their assigne
"@ "@
$azureADRoles | % { $azureADRoles | % {
#Get-ARTADRolePermissions -RoleName $_.DisplayName Get-ARTADRolePermissions -RoleName $_.DisplayName
} }
} }