13 lines
No EOL
356 B
Django/Jinja
13 lines
No EOL
356 B
Django/Jinja
# Redis Configuration (Main Redis)
|
|
# Generated by Ansible - DO NOT EDIT MANUALLY
|
|
|
|
{% if netbox_redis_password %}
|
|
REDIS_PASSWORD={{ netbox_redis_password }}
|
|
{% endif %}
|
|
|
|
# Additional Redis Configuration
|
|
{% if netbox_redis_additional_env is defined %}
|
|
{% for key, value in netbox_redis_additional_env.items() %}
|
|
{{ key }}={{ value }}
|
|
{% endfor %}
|
|
{% endif %} |