homeserver/roles/mgrote_minio_configure/tasks/user.yml

22 lines
478 B
YAML
Raw Normal View History

2024-11-09 10:16:52 +01:00
---
2024-11-09 18:49:50 +01:00
- name: Add a Minio user
dubzland.minio.minio_user:
access_key: "{{ item.name }}"
secret_key: "{{ item.secret }}"
auth:
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
url: "{{ minio_url }}"
state: "{{ item.state | default('present') }}"
# policy:
delegate_to: localhost
2024-11-09 10:16:52 +01:00
loop: "{{ minio_users }}"
2024-11-09 10:45:17 +01:00
2024-11-09 11:00:18 +01:00
# no_log überall bei keys und users
# linter
# succssfu/changed_when
2024-11-09 11:14:58 +01:00
# state absent einbauen