Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.32 KB | None | 0 0
  1. ---
  2. vars_files:
  3.  - ./vars/credentials.yml
  4.   - ./vars/vars.yml
  5. vars:
  6.   vc: vcsa.host.se1.csnzoo.com
  7.  
  8. tasks:
  9.   debug:
  10.   msg: vc is "{{ vc }}"
  11.  
  12.   plugin: vmware_vm_inventory
  13.   strict: False
  14.   hostname: '{{ vc }}'
  15.   username: '{{ vc_username }}'
  16.   password: '{{ vc_pass }}'
  17.   validate_certs: False
  18.   with_tags: True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement