Ansible: Set variable only if undefined

喜你入骨 提交于 2019-12-02 22:27:38
Henrik Pingel

It seems like you are taking a wrong approach.

Take a look at the Ansible documentation concerning variable precedence. It is a built-in feature of Ansible to use the default variable if the variable is not defined.

In Ansible 2.x the variable precedence starts like this:

role defaults

inventory vars

So if you want to define a default value for a variable you should set it in role/defaults/main.yml. Ansible will use that value only if the variable is not defined somewhere else.

Another option is to use a Jinja2 filter. With a Jinja filter you can set a default value for a variable like this:

{{ some_variable | default(5) }}
- set_fact: namespace="default_namespace"
  when: namespace is undefined

In case you need to set your variable by priority order, likewise:

  1. Set variable as var_priority_1.
    But if it is not defined, then:
  2. Set variable as var_priority_2.
    But if it is not defined either, then:
  3. Set variable to a default value.

I had to use such condition while trying to get value from inventory hosts variables, that sometimes need to be overridden by role vars:

shell: |
    ...
    shell_var={{ role_var if role_var is defined else hostvars[item].host_var | default('defalut_value') }}
    ...
  with_items: "{{ groups[hosts_group_iterator] }}"

Additional, in case you using lookup to define default variable (read from environment) you have also set the second parameter of default to true:

- set_facts:
    ansible_ssh_user: "{{ lookup('env', 'SSH_USER') | default('foo', true) }}"

You can also concatenate multiple default definitions together:

- set_facts:
    ansible_ssh_user: "{{ some_var.split('-')[1] | default(lookup('env','USER'), true) | default('foo') }}"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!