Last active
March 26, 2024 14:09
-
-
Save thepaulmacca/44960cf337a0eb0571c7fa7a342154b7 to your computer and use it in GitHub Desktop.
Azure RBAC Custom Role - App Configuration Data Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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