r/minio: Add option to disable firewall rules

If MinIO is behind a reverse proxy, we do not want to expose it directly
to the network.
This commit is contained in:
2024-08-31 19:03:20 -05:00
parent 3c907d0a16
commit 7854a729b7

View File

@@ -117,7 +117,7 @@
port: '{{ item }}/tcp'
permanent: true
immediate: true
state: enabled
state: '{{ "enabled" if minio_allow_outside|d(true) else "disabled" }}'
loop:
- 9000
- 9090