Merge pull request #150 from europeconsulting/unsorted_context_mappings

Disabled automatic sorting of mapping keys in jinja templating
This commit is contained in:
N 2019-01-24 20:25:37 +00:00 committed by GitHub
commit 1037120561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -25,5 +25,5 @@ nginx_config:
- 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 %}

View File

@ -1,6 +1,6 @@
{% 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 %}

View File

@ -116,7 +116,7 @@ nginx_server_available_dir:
- 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: