13 lines
380 B
Django/Jinja
13 lines
380 B
Django/Jinja
# 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 %}
|