**Hi all I am trying to create new ACL on 1000 cisco routers and Ansible version is
2.9.
- my code!
---
- name: Create ACL
hosts: routers
gather_facts: false
connection: local
vars:
cli:
username: "{{ hdn_user_rw }}"
password: "{{ hdn_pass_rw }}"
tasks:
- name: Push config
ios_config:
provider: "{{ cli }}"
authorize: yes
lines:
- permit 10.253.68.64 0.0.0.62
Parents: ip access-list standard TEST
before: no ip access-list standard TEST
match: none
I am getting the errors below...
Unsupported parameters for (ios_config) module: Parents Supported parameters include: after,auth_pass,authorize,backup,before,defaults,diff_against,diff_ignore_lines,force,host,intended_config,lines,match,multiline_delimiter,parents,password,port,provider,replace,running_config,save,save_when,src,ssh_keyfile,timeout,username
to retry, use: --limit @/opt/ansible/dev/Dheeraj/Splunk3.retry
PLAY RECAP *****************************************************************************************************************************************************************************************************************************************************
WAGGJLC-NRT001 : ok=0 changed=0 unreachable=0 failed=1
No sure what wrong am I doing, its showing me unsupported parameters
again and again, thanks for you help
- Set at least one tag (the experts follow the tags, so the right people will find you if you tag)