Skip to content

Instantly share code, notes, and snippets.

@alventech
Created April 23, 2021 10:01
Show Gist options
  • Save alventech/70dc58b69c3567902cecab0b788910d9 to your computer and use it in GitHub Desktop.
Save alventech/70dc58b69c3567902cecab0b788910d9 to your computer and use it in GitHub Desktop.
Azure Image Builder Custom Role
{
"Name": "Azure Image Builder Service Image Creation Role",
"IsCustom": true,
"Description": "AIB access to create resources for the image build, you should delete or split out as appropriate",
"Actions": [
"Microsoft.Compute/galleries/read",
"Microsoft.Compute/galleries/images/read",
"Microsoft.Compute/galleries/images/versions/read",
"Microsoft.Compute/galleries/images/versions/write",
"Microsoft.Compute/images/write",
"Microsoft.Compute/images/read",
"Microsoft.Compute/images/delete"
],
"NotActions": [
],
"AssignableScopes": [
"/subscriptions/<subscriptionID>/resourceGroups/<rgName>"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment