Add firewall rule to allow access to Redis on Zerotier network

This commit is contained in:
Greg Karékinian
2023-06-20 15:19:34 +02:00
parent 76a952dbac
commit b19fca6e7c
5 changed files with 33 additions and 1 deletions

View File

@@ -1,7 +1,18 @@
name "redis_server"
run_list %w(
default_run_list = %w(
kosmos_redis::default
)
production_run_list = %w(
kosmos_redis::default
kosmos_redis::firewall
)
env_run_lists(
'_default' => default_run_list,
'development' => default_run_list,
'production' => production_run_list
)
default_attributes({})