Ask Your Question
4

What is the method for setting a default value of 'null' in Ansible?

asked 2023-07-16 12:15:06 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-07-16 12:25:01 +0000

qstack gravatar image

To set a default value of 'null' in Ansible, you can use the 'default' filter. For example:

- name: Set default value to null
  debug:
    var: my_var | default(null)

In this example, 'my_var' is the variable that you want to set a default value for. The 'default' filter is used to set the default value to 'null'.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-16 12:15:06 +0000

Seen: 14 times

Last updated: Jul 16 '23