如何使用具有可变变量的可变模板模块从hostvars接收值?

时间:2019-12-17 06:17:46

标签: ansible ansible-inventory ansible-template

在templates / config.py中:

{% if env_value == 'Dev' %}
  {% set x = {{hostvars['ces_dev']['ansible_host']}} %}
{% else %}
  {% set x = {{hostvars['ces_demo']['ansible_host']}} %}
{% endif %} 

API_CONFIG = {
    'api_email_url': 'http://{{x}}:8080/api/users/mail',
}

在主机清单中:

ces_dev    ansible_ssh_private_key=<path>   ansible_host=a.b.c.d

ces_demo   ansible_ssh_private_key=<path>   ansible_host=x.y.z.w

符合条件的预期输出:

API_CONFIG = {
        'api_email_url': 'http://a.b.c.d:8080/api/users/mail',
    }

我遇到错误:"msg": "AnsibleError: template error while templating string: expected token 'colon', got '}'

如何解决此问题并获得所需的输出?

2 个答案:

答案 0 :(得分:1)

我用几种尝试错误的方法自己破解了预期的输出。解决方案是:

API_CONFIG = {
    {% if env_value == 'Dev' %}
    'api_email_url': 'http://{{hostvars['ces_dev']['ansible_host']}}:8080/api/users/mail',
    'api_token_url': 'http://{{hostvars['ces_dev']['ansible_host']}}:8080/api/app/',
    {% else %}
    'api_email_url': 'http://{{hostvars['ces_demo']['ansible_host']}}:8080/api/users/mail',
    'api_token_url': 'http://{{hostvars['ces_demo']['ansible_host']}}:8080/api/app/',
    {% endif %} 
}

答案 1 :(得分:1)

默认情况下,变量被扩展。例如

{% if env_value == 'Dev' %}
  {% set x = hostvars.ces_dev.ansible_host %}
{% else %}
  {% set x = hostvars.ces_demo.ansible_host %}
{% endif %}
API_CONFIG = {
    'api_email_url': 'http://{{x}}:8080/api/users/mail',
}