-
-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto-scoped tokens #885
Comments
This was referenced Feb 6, 2024
peterthomassen
added a commit
that referenced
this issue
Nov 19, 2024
peterthomassen
added a commit
that referenced
this issue
Nov 21, 2024
Merged
peterthomassen
added a commit
that referenced
this issue
Nov 22, 2024
peterthomassen
added a commit
that referenced
this issue
Nov 30, 2024
peterthomassen
added a commit
that referenced
this issue
Dec 1, 2024
peterthomassen
added a commit
that referenced
this issue
Dec 1, 2024
peterthomassen
added a commit
that referenced
this issue
Dec 1, 2024
peterthomassen
added a commit
that referenced
this issue
Dec 1, 2024
peterthomassen
added a commit
that referenced
this issue
Dec 1, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Token.perm_create_domain
(default: false unless login token; migration: true if token has no policies).Token.perm_delete_domain
(default: false unless login token; migration: true if token has no policies).Token.auto_policy
(default: false). (Must also have a restrictive default policy)Tokens can create domains iff
perm_create_domain == True
.Tokens can delete domains iff
perm_delete_domain == True
&& they have a permissive policy for the domain in question (or no policies at all).When a domain is created and
auto_policy == True
, the token is assigned a permissive policy for this domain.This allows provisioning of domains and maintaining/de-provisioning the same domains, within an account, without granting access to other parts of the account.
The text was updated successfully, but these errors were encountered: