Hi, I have the follow basic playbook for a Cisco IOS router, running ansible 2.3
---
- hosts: ios_routers
connection: local
tasks:
- name: run show version
ios_command:
commands: show version
I run the playbook like this so it prompts me for the password.
$ ansible-playbook demo.yaml -u cisco -k
So how can I do this for a Cisco ASA where the is an additional step where I should put in the enable password?
Thanks!