feat: initial playbook
This commit is contained in:
parent
99bfb97ee7
commit
f8e1de4f0a
30 changed files with 1097 additions and 2 deletions
13
roles/netbox-deploy/templates/redis-cache.env.j2
Normal file
13
roles/netbox-deploy/templates/redis-cache.env.j2
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Redis Cache Configuration
|
||||
# Generated by Ansible - DO NOT EDIT MANUALLY
|
||||
|
||||
{% if netbox_redis_cache_password %}
|
||||
REDIS_PASSWORD={{ netbox_redis_cache_password }}
|
||||
{% endif %}
|
||||
|
||||
# Additional Redis Cache Configuration
|
||||
{% if netbox_redis_cache_additional_env is defined %}
|
||||
{% for key, value in netbox_redis_cache_additional_env.items() %}
|
||||
{{ key }}={{ value }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue