File tree 3 files changed +25
-1
lines changed
netdevops/ansible_part_3/group_vars
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 32
32
domain : 100
33
33
pkl_vrf : management
34
34
port_channel :
35
- id : 1
35
+ id : " 1 "
36
36
members :
37
37
- Ethernet1/3
38
38
- Ethernet1/4
Original file line number Diff line number Diff line change
1
+ # These variables are used with the connection: network_cli for Ansible
2
+ # Info: https://docs.ansible.com/ansible/2.9/network/user_guide/platform_ios.html
3
+ # https://docs.ansible.com/ansible/2.9/plugins/connection/network_cli.html
4
+
5
+ ---
6
+ # ansible_connection: network_cli
7
+ ansible_network_os : ios
8
+ ansible_user : cisco
9
+ ansible_password : cisco
10
+ ansible_become : yes
11
+ ansible_become_method : enable
12
+ ansible_become_password : cisco
Original file line number Diff line number Diff line change
1
+ # These variables are used with the connection: network_cli for Ansible
2
+ # Info: https://docs.ansible.com/ansible/2.9/network/user_guide/platform_nxos.html
3
+ # https://docs.ansible.com/ansible/2.9/plugins/connection/network_cli.html
4
+
5
+ ---
6
+ # ansible_connection: network_cli
7
+ ansible_network_os : nxos
8
+ ansible_user : cisco
9
+ ansible_password : cisco
10
+ ansible_become : yes
11
+ ansible_become_method : enable
12
+ ansible_become_password : cisco
You can’t perform that action at this time.
0 commit comments