You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change CLI parameter singe quotes to double quotes
Changing the single quotes to double quotes around the parameter value of the CLI command to get RBAC role info. Single quotes produce an empty array in CLI but work in PS. Double quotes work in both CLI and PS.
Changing this:
az role definition list --name 'Contributor'
to this:
az role definition list --name "Contributor"
0 commit comments