homeserver/roles/mgrote_minio_configure/tasks/bucket.yml

11 lines
276 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:
name: "{{ item.name }}"
auth:
access_key: "{{ minio_root_access_key }}"
secret_key: "{{ minio_root_secret_key }}"
url: "{{ minio_url }}"
state: present
loop: "{{ minio_buckets }}"