Skip to content

Commit 2eeeb62

Browse files
committed
Move user and group plugins under identity namespace
1 parent eb4a68e commit 2eeeb62

18 files changed

Lines changed: 2517 additions & 2457 deletions

docs/TECHNICAL_DESIGN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ filesystem: fs.*
113113
archive: archive.*
114114
packages: pkg.*
115115
systemd: systemctl.*
116-
users/groups: user.*, group.*
116+
identity: identity.user.*, identity.group.*
117117
processes: process.*
118118
transfer: transfer.*
119119
http/api: http.*

docs/guides/account-access.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ SPDX-License-Identifier: AGPL-3.0-or-later
77

88
Automax includes account access plugins for common Linux operator tasks:
99

10-
- `user.exists`, `user.lock`, `user.unlock`, `user.set_password`
11-
- `group.exists`
10+
- `identity.user.exists`, `identity.user.lock`, `identity.user.unlock`, `identity.user.set_password`
11+
- `identity.group.exists`
1212
- `security.ssh.authorized_key.add`
1313
- `security.sudo.dropin`
1414

15-
Use `password_hash` with `user.set_password` whenever possible. Plaintext passwords are supported for operational compatibility, but command secrets or file secrets are preferred.
15+
Use `password_hash` with `identity.user.set_password` whenever possible. Plaintext passwords are supported for operational compatibility, but command secrets or file secrets are preferred.
1616

1717
```yaml
1818
- id: set_deploy_password
19-
use: user.set_password
19+
use: identity.user.set_password
2020
with:
2121
name: deploy
2222
password_hash: "{{ secrets.deploy_password_hash }}"

0 commit comments

Comments
 (0)