grafana-iam: change resourcepermission to use a single verb (#110263)

* `grafana-iam`: change resource permission to only allow a single action set for now

* api changes
This commit is contained in:
Gabriel MABILLE
2025-08-28 11:25:38 +02:00
committed by GitHub
parent 87fe2f4258
commit 0284c3f1f9
4 changed files with 16 additions and 28 deletions
@@ -4042,7 +4042,7 @@
"required": [
"kind",
"name",
"verbs"
"verb"
],
"properties": {
"kind": {
@@ -4055,13 +4055,10 @@
"type": "string",
"default": ""
},
"verbs": {
"description": "list of actions granted to the user (e.g. \"admin\" or \"get\", \"update\")",
"type": "array",
"items": {
"type": "string",
"default": ""
}
"verb": {
"description": "action set granted to the user (e.g. \"admin\" or \"edit\", \"view\")",
"type": "string",
"default": ""
}
}
},