Skip to content

Instantly share code, notes, and snippets.

@constrict0r
Last active February 10, 2019 14:16
Show Gist options
  • Save constrict0r/cb1fdec3cd791af31832824fc571316d to your computer and use it in GitHub Desktop.
Save constrict0r/cb1fdec3cd791af31832824fc571316d to your computer and use it in GitHub Desktop.
Verify ansible variable is defined, is setted and is not empty.
- name: Hello when you exists.
debug:
msg: Hello, you exist.
when: not (
(you is undefined)
or
(you is none)
or
(you | trim == '')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment