Guest User

Untitled

a guest
Oct 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. - name: debug it
  2. debug:
  3. var: all_tagged_droplets.json.droplets | selectattr('name', 'equalto', '{{inventory_hostname}}') | list
  4.  
  5. - name: find the right droplet
  6. set_fact:
  7. droplet: "{{ all_tagged_droplets.json.droplets | selectattr('name', 'equalto', '{{inventory_hostname}}') | list }}"
  8.  
  9. - name: debug it
  10. debug:
  11. var: droplet
Add Comment
Please, Sign In to add comment