Clean up of prefix list scripts

This commit is contained in:
Vlad R
2023-01-12 10:53:38 +00:00
parent 8e74e002fc
commit a8315bedfc
3 changed files with 0 additions and 8 deletions
@@ -0,0 +1,19 @@
---
- name: Audit device prefix lists
hosts: targets
gather_facts: false
connection: network_cli
roles:
- common
tasks:
- name: Collect current prefix lists
cisco.ios.ios_prefix_lists:
config:
state: gathered
register: result
- name: Print current prefix lists information
debug:
var: result.gathered
@@ -0,0 +1,19 @@
---
- name: Audit device route maps
hosts: targets
gather_facts: false
connection: network_cli
roles:
- common
tasks:
- name: Collect current route maps
cisco.ios.ios_route_maps:
config:
state: gathered
register: result
- name: Print current route maps information
debug:
var: result.gathered