Skip to content

Instantly share code, notes, and snippets.

@heiwa4126
Last active March 6, 2020 13:07
Show Gist options
  • Save heiwa4126/a51894a7124b043258aecb515b6918c5 to your computer and use it in GitHub Desktop.
Save heiwa4126/a51894a7124b043258aecb515b6918c5 to your computer and use it in GitHub Desktop.
Ansibleのサンプル。Jnija2には内包表記がない。リストを「引用符でくくって、コンマでつなぐ」例。win_shellとかでよく使う。
- name: jinja2 has not list comprehension.
hosts: localhost
become: no
gather_facts: false
vars:
data: [foo, bar, baz]
tasks:
-
debug:
msg: >
{% for x in data %}"{{x}}"{% if loop.last %}{% else %},{% endif %}{% endfor %}
@heiwa4126
Copy link
Author

TASK [join example 2] ********************************************************************************
ok: [localhost] =>
  msg: |-
    "foo","bar","baz"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment