---
- name: Playbook-01-Gather Facts
  hosts: distribution 
  tasks:
    - name: ios facts on distribution
      ios_facts:
      register: output

    - name: copy ios facts to file 
      copy:
        content: ""
        dest: "./documentation/distribution/_IOS_FACTS.json"
