├── LICENSE ├── README.md ├── inventory ├── library └── snmp_facts.py ├── roles └── create-template │ ├── tasks │ └── main.yml │ └── templates │ └── netdevice.j2 └── snmp_facts-playbook.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/README.md -------------------------------------------------------------------------------- /inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/inventory -------------------------------------------------------------------------------- /library/snmp_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/library/snmp_facts.py -------------------------------------------------------------------------------- /roles/create-template/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/roles/create-template/tasks/main.yml -------------------------------------------------------------------------------- /roles/create-template/templates/netdevice.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/roles/create-template/templates/netdevice.j2 -------------------------------------------------------------------------------- /snmp_facts-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networklore/ansible-snmp-facts/HEAD/snmp_facts-playbook.yml --------------------------------------------------------------------------------