Created
May 15, 2022 06:28
-
-
Save hnakamur/5f2c8f9c6dd3b218374e7f0697516e4f to your computer and use it in GitHub Desktop.
trim spaces in ansible vairable using jinja2 if
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: My playbook | |
hosts: localhost | |
vars: | |
zabbix_agentd_d_dir: >- | |
{% if ansible_facts['os_family'] == 'RedHat' -%} | |
/etc/zabbix/zabbix_agentd.d | |
{%- else -%} | |
/etc/zabbix/zabbix_agentd.conf.d | |
{%- endif %} | |
tasks: | |
- name: Print zabbix_agentd_d_dir | |
debug: var=zabbix_agentd_d_dir |
another solution using Jinja2 if expression
---
- name: My playbook
hosts: localhost
vars:
zabbix_agentd_d_dir: "{{ '/etc/zabbix/zabbix_agentd.d' if ansible_facts['os_family'] == 'RedHat'
else '/etc/zabbix/zabbix_agentd.conf.d' }}"
tasks:
- name: Print zabbix_agentd_d_dir
debug: var=zabbix_agentd_d_dir
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://jinja.palletsprojects.com/en/3.1.x/templates/#whitespace-control for
-
in{%-
and-%}
.