minio: Define minio_users as empty list by default

This commit is contained in:
saibotk 2020-08-15 00:26:12 +02:00
parent c9eb84f8f0
commit d0fed7b07c
No known key found for this signature in database
GPG key ID: A3299C587D5DF523
2 changed files with 5 additions and 1 deletions

View file

@ -37,4 +37,4 @@ minio_traefik_certresolver: "letsencrypt_http"
# access_key - The access key # access_key - The access key
# secret_key - The secret key # secret_key - The secret key
# browser - Optional: Enable/Disable the minio browser # browser - Optional: Enable/Disable the minio browser
# minio_users: [] minio_users: []

View file

@ -73,6 +73,8 @@
- docker - docker
- minio - minio
become: true become: true
when:
- minio_users | length > 0
- name: Compose minio - name: Compose minio
docker_compose: docker_compose:
@ -83,3 +85,5 @@
tags: tags:
- minio - minio
become: true become: true
when:
- minio_users | length > 0