Create/Update/Delete Minio Buckets.
Version added: 0.2.0
- Create/Update/Delete Minio Buckets.
- https://docs.min.io/docs/python-client-api-reference.html
The below requirements are needed on the host that executes this module.
- minio
- name: create bucket in minio
community.missing_collection.minio_bucket:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
make_bucket: true
bucket: "test12"
object_lock: false
- name: remove given bucket
community.missing_collection.minio_bucket:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
remove_bucket: true
bucket: 'test5'
- name: set bucket tags
community.missing_collection.minio_bucket:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
set_bucket_tags: true
bucket: 'test12'
tags:
project: "ansible"
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>