Skip to content

Instantly share code, notes, and snippets.

@thepaulmacca
Last active March 26, 2024 14:09
Show Gist options
  • Save thepaulmacca/44960cf337a0eb0571c7fa7a342154b7 to your computer and use it in GitHub Desktop.
Save thepaulmacca/44960cf337a0eb0571c7fa7a342154b7 to your computer and use it in GitHub Desktop.
Azure RBAC Custom Role - App Configuration Data Contributor
{
"properties": {
"roleName": "App Configuration Data Contributor",
"description": "Allows access to create/read/modify App Configuration data",
"assignableScopes": [
"/subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXX"
],
"permissions": [
{
"actions": [],
"notActions": [],
"dataActions": [
"Microsoft.AppConfiguration/configurationStores/*/read",
"Microsoft.AppConfiguration/configurationStores/*/write",
"Microsoft.AppConfiguration/configurationStores/*/action"
],
"notDataActions": []
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment