---
- debug: msg="START nxapi/output.yaml"

- name: get output for single command
  nxos_command:
    commands: ['show version']
    provider: "{{ nxapi }}"
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"

- name: get output for multiple commands
  nxos_command:
    commands:
      - show version
      - show interface
    provider: "{{ nxapi }}"
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"

- debug: msg="END nxapi/output.yaml"