Get Information about Minio Bucket.
Version added: 0.2.0
- Get Information about Minio Bucket.
- https://docs.min.io/docs/python-client-api-reference.html
The below requirements are needed on the host that executes this module.
- minio
- name: get list of sort buckets
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
list_buckets: true
- name: get version status of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_versioning: true
bucket: 'test'
- name: get replication status of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_replication: true
bucket: 'test'
- name: get lifecycle rules & their status of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_lifecycle: true
bucket: 'test'
- name: get tags of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_tags: true
bucket: 'test'
- name: get policy of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_policy: true
bucket: 'test'
- name: get notification details of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_notification: true
bucket: 'test'
- name: get encryption details of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_bucket_encryption: true
bucket: 'test'
- name: get encryption details of given bucket
community.missing_collection.minio_bucket_info:
endpoint: "localhost:9000"
username: minioadmin
password: minioadmin
get_object_lock_config: true
bucket: 'test'
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>