homeserver/roles/mgrote_minio_configure/tasks/bucket.yml

11 lines
274 B
YAML
Raw Normal View History

2024-11-09 10:34:23 +01:00
---
2024-11-09 19:16:10 +01:00
- name: Add a Minio bucket
dubzland.minio.minio_bucket:
2024-11-09 20:39:01 +01:00
name: "{{ item.name }}"
2024-11-09 19:16:10 +01:00
auth:
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
url: "{{ minio_url }}"
state: present
2024-11-09 20:39:28 +01:00
loop: "{{ minio_buckets }}"