user auth

This commit is contained in:
2024-09-20 11:25:06 +02:00
parent 65d6bcd2be
commit 3a5fe48f76
2 changed files with 23 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# Authentication
```{tableofcontents}
```
@@ -0,0 +1,19 @@
# Giving users and groups access to a system
A list of users and or groups that can access the system. Members of the groups `aaa:admins:` don't need to be members of `aaa::users:` to access a system.
### Regular access
Access for ActiveDirectory (AD) user accounts or groups that are non Experiment accounts. (See e account section for that)
```
aaa::users:
- 'muster_h'
- '%unx-project_group'
```
### Sudo access
To give root access for AD user accounts or groups via sudo.
```
aaa::admins:
- 'muster_h'
- 'unx-project_group'
```