Refer to the exhibit.
- hosts: CISCO_ROUTER_01
gather_facts: true
connection: network_cli
tasks:
- name: show conf
ios_command:
commands:
- show running-config
register: config
- name: save output to /etc/ansible/configs
copy:
content: "{{ config.stdout[0] }}"
dest: "etc/ansible/configs/command_{{ router_hostname }}.txt
What is the result of executing this Ansible playbook?