Files
grafana/apps/iam/kinds/v0alpha1/teambindingspec.cue
Mihai Doarna 54c224dae7 IAM: Add the external field to the TeamBinding spec (#112382)
* add the external field to the TeamBinding spec

* fix unit tests
2025-10-15 11:21:33 +03:00

24 lines
331 B
CUE

package v0alpha1
TeamBindingSpec: {
#Subject: {
// uid of the identity
name: string
}
subject: #Subject
teamRef: TeamRef
// permission of the identity in the team
permission: TeamPermission
external: bool
}
TeamRef:{
// Name is the unique identifier for a team.
name: string
}
TeamPermission: "admin" | "member"