homeserver/roles/mgrote_minio_configure/tasks/bucket.yml
Michael Grote 20f1efc282 changed Files: roles/mgrote_minio_configure/tasks/bucket.yml
roles/mgrote_minio_configure/tasks/main.yml
roles/mgrote_minio_configure/tasks/policy.yml

Signed-off-by: Michael Grote <michael.grote@posteo.de>
2024-11-24 20:58:33 +00:00

18 lines
532 B
YAML

---
- name: Setup buckets
dubzland.minio.minio_bucket:
name: "{{ item.name }}"
auth:
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
url: "{{ minio_url }}"
state: "{{ item.state | default('present') }}"
loop: "{{ minio_buckets }}"
delegate_to: localhost
- name: Deletion Info
ansible.builtin.debug:
msg: "Deletion only possible with empty bucket ({{ item.name }})"
when: '"absent" in item.state'
loop: "{{ minio_buckets }}"
delegate_to: localhost