[release-12.2.1] Auth: Add SCIM settings permission to auth config writer role (#111398)

Auth: Add SCIM settings permission to auth config writer role (#111326)

* Auth: add SCIM settings permission to authentication config writer role

* make update-workspace

(cherry picked from commit 1ef27e9749)

Co-authored-by: colin-stuart <colindonstuart@gmail.com>
This commit is contained in:
grafana-delivery-bot[bot] 2025-09-19 10:46:31 -05:00 committed by GitHub
parent d1bd29aa3b
commit 5a2ab9b8b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View File

@ -401,6 +401,7 @@ const (
// Settings scope
ScopeSettingsAll = "settings:*"
ScopeSettingsSAML = "settings:auth.saml:*"
ScopeSettingsSCIM = "settings:auth.scim:*"
// Team related actions
ActionTeamsCreate = "teams:create"

View File

@ -273,6 +273,14 @@ var (
Action: ActionSettingsWrite,
Scope: ScopeSettingsOAuth("ldap"),
},
{
Action: ActionSettingsRead,
Scope: ScopeSettingsSCIM,
},
{
Action: ActionSettingsWrite,
Scope: ScopeSettingsSCIM,
},
},
}