---
- name: "PLAY 1: Configure All Dist Switches"
  hosts: dist
  tasks:
    - name: "Configure Hostname and Domain Name"
      ios_system:
        hostname: ""
        domain_name: ""
        lookup_enabled: no
        name_servers: ""
      register: commands
    
    - debug: 
        var: commands
    
    - name: "Configure NTP"
      ios_ntp:
        server: ""
        logging: true
        state: present
      register: commands

    - debug: 
        var: commands

