Michael Grote
20f1efc282
roles/mgrote_minio_configure/tasks/main.yml roles/mgrote_minio_configure/tasks/policy.yml Signed-off-by: Michael Grote <michael.grote@posteo.de>
18 lines
532 B
YAML
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
|