- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for iamPolicyClaimNameSA (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/iam.go
} m := make(map[string]any) m[parentClaim] = parentUser if len(policyBuf) > 0 { m[policy.SessionPolicyName] = base64.StdEncoding.EncodeToString(policyBuf) m[iamPolicyClaimNameSA()] = embeddedPolicyType } else { m[iamPolicyClaimNameSA()] = inheritedPolicyType } // Add all the necessary claims for the service account. for k, v := range opts.claims { _, ok := m[k] if !ok { m[k] = v
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0) -
cmd/iam-store.go
// sessionPolicy is nil and there is embedded policy attached we remove // embedded policy at that point. if _, ok := m.Lookup(policy.SessionPolicyName); ok && nosp { m.Delete(policy.SessionPolicyName) m.Set(iamPolicyClaimNameSA(), inheritedPolicyType) } if opts.sessionPolicy != nil { // session policies is being updated if err := opts.sessionPolicy.Validate(); err != nil { return updatedAt, err }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 87.1K bytes - Click Count (0)