Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ---
  2. - name: Run command and print to terminal window
  3. hosts: switches
  4. gather_facts: no
  5.  
  6. tasks:
  7. - name: Run show command
  8. ios_facts:
  9. gather_subset:
  10. - '!all'
  11. - '!min'
  12. gather_network_resources:
  13. - interfaces
  14. register: command_output
  15. - name: Display result to terminal window
  16. debug:
  17. var: ansible_network_resources
  18. - copy: content="{{ ansible_network_resources | to_nice_json }}" dest="out/{{inventory_hostname}}_iosfacts.json"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement