Browse Source

Merge pull request #150 from europeconsulting/unsorted_context_mappings

Disabled automatic sorting of mapping keys in jinja templating
tags/v0.55.0
N 6 years ago
parent
commit
1037120561
No account linked to committer's email address
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      nginx/ng/config.sls
  2. +1
    -1
      nginx/ng/map.jinja
  3. +1
    -1
      nginx/ng/servers_config.sls

+ 1
- 1
nginx/ng/config.sls View File

- template: jinja - template: jinja
{% if 'source_path' not in nginx.server.config %} {% if 'source_path' not in nginx.server.config %}
- context: - context:
config: {{ nginx.server.config|json() }}
config: {{ nginx.server.config|json(sort_keys=False) }}
{% endif %} {% endif %}

+ 1
- 1
nginx/ng/map.jinja View File

{% macro sls_block(dict) %} {% macro sls_block(dict) %}
{% for key, value in dict.items() %} {% for key, value in dict.items() %}
- {{ key }}: {{ value|json() }}
- {{ key }}: {{ value|json(sort_keys=False) }}
{% endfor %} {% endfor %}
{% endmacro %} {% endmacro %}



+ 1
- 1
nginx/ng/servers_config.sls View File

- service: nginx_service - service: nginx_service
{% if 'source_path' not in settings.config %} {% if 'source_path' not in settings.config %}
- context: - context:
config: {{ settings.config|json() }}
config: {{ settings.config|json(sort_keys=False) }}
{% endif %} {% endif %}
{% if 'overwrite' in settings and settings.overwrite == False %} {% if 'overwrite' in settings and settings.overwrite == False %}
- unless: - unless:

Loading…
Cancel
Save