setup minio automation #229

Merged
mg merged 114 commits from minio_automation into master 2024-11-09 22:00:58 +01:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit e0f057cd96 - Show all commits

View file

@ -1,11 +1,10 @@
---
- name: Ensure buckets exists
- 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') }}"
state: "{{ item.state }}"
loop: "{{ minio_buckets }}"
# state mit default

View file

@ -34,7 +34,7 @@
ansible.builtin.command: "{{ minio_client_bin }} --dp admin policy create {{ minio_root_alias }} {{ item.name }}_rw {{ minio_config_dir }}/{{ item.name }}_rw"
loop: "{{ minio_buckets }}"
- name: "remove old policies"
- name: "remove old policy files"
ansible.builtin.file:
path: "{{ minio_config_dir }}/{{ item.name }}_ro"
state: absent