Created
August 3, 2018 18:09
-
-
Save brbarnett/6e5d13a1c9961833e48bf8ddd95019e8 to your computer and use it in GitHub Desktop.
Create Azure custom role for az aks get-credentials
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
{ | |
"Name":"AKS Cluster Configuration Reader", | |
"Id":"{{ create a unique guid }}", | |
"IsCustom":true, | |
"Description":"Can get AKS configuration.", | |
"Actions":[ | |
"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action", | |
"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action" | |
], | |
"NotActions":[ | |
], | |
"DataActions":[ | |
], | |
"NotDataActions":[ | |
], | |
"AssignableScopes":[ | |
"/subscriptions/{{ your subscription ID }}" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment