Trying to assign Reader role for application at subscription level using the following powershell command. but it gets failed
foreach ($Id in Get-AzSubscription)
{
New-AzRoleAssignment -ObjectId '<Application-Object-Id>' -RoleDefinitionName "Reader" -Scope '/subscriptions/$Id'
}
getting this error "New-AzRoleAssignment: Operation returned an invalid status code 'BadRequest'"
Please try by changing your code to:
Essentially the issue with your code was that
$Id
variable is an object of typeMicrosoft.Azure.Commands.Profile.Models.PSAzureSubscription
which contains information about the subscription and not just the subscription id.