-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathnetwork_device_info.yml
37 lines (34 loc) · 1.16 KB
/
network_device_info.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
- name: Network device info
hosts: dnac_servers
vars_files:
- credentials.yml
gather_facts: false
tasks:
- name: Get Network Devices
cisco.dnac.network_device_info:
dnac_host: "{{ dnac_host }}"
dnac_username: "{{ dnac_username }}"
dnac_password: "{{ dnac_password }}"
dnac_verify: "{{ dnac_verify }}"
dnac_port: "{{ dnac_port }}"
dnac_version: "{{ dnac_version }}"
dnac_debug: "{{ dnac_debug }}"
register: network_devices_result
- name: Show all network_devices
ansible.builtin.debug:
msg: "{{ network_devices_result }}"
- name: Get Network Device by id
cisco.dnac.network_device_info:
dnac_host: "{{ dnac_host }}"
dnac_username: "{{ dnac_username }}"
dnac_password: "{{ dnac_password }}"
dnac_verify: "{{ dnac_verify }}"
dnac_port: "{{ dnac_port }}"
dnac_version: "{{ dnac_version }}"
dnac_debug: "{{ dnac_debug }}"
id: ccb167e0-1ce2-4a03-853c-3f8d0dc47fee
register: network_device_result
- name: Show network_device
ansible.builtin.debug:
msg: "{{ network_device_result }}"