mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
This commit is contained in:
parent
1659951710
commit
a197125954
127 changed files with 713 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
mode: layer3
|
||||
description: 'Configured by Ansible - Layer3'
|
||||
admin_state: 'up'
|
||||
provider: "{{ connection }}"
|
||||
state: present
|
||||
|
||||
- name: "Make {{testint2}} a layer3 interface"
|
||||
|
@ -32,6 +33,7 @@
|
|||
mode: layer3
|
||||
description: 'Configured by Ansible - Layer3'
|
||||
admin_state: 'up'
|
||||
provider: "{{ connection }}"
|
||||
state: present
|
||||
|
||||
# For titanium
|
||||
|
@ -39,6 +41,7 @@
|
|||
nxos_ip_interface:
|
||||
interface: "{{ testint1 }}"
|
||||
version: v4
|
||||
provider: "{{ connection }}"
|
||||
state: absent
|
||||
addr: 20.20.20.20
|
||||
mask: 24
|
||||
|
@ -48,6 +51,7 @@
|
|||
nxos_ip_interface:
|
||||
interface: "{{ testint2 }}"
|
||||
version: v6
|
||||
provider: "{{ connection }}"
|
||||
state: absent
|
||||
addr: 'fd56:31f7:e4ad:5585::1'
|
||||
mask: 64
|
||||
|
@ -56,6 +60,7 @@
|
|||
nxos_ip_interface: &ipv4
|
||||
interface: "{{ testint1 }}"
|
||||
version: v4
|
||||
provider: "{{ connection }}"
|
||||
state: present
|
||||
addr: 20.20.20.20
|
||||
mask: 24
|
||||
|
@ -77,6 +82,7 @@
|
|||
nxos_ip_interface: &ipv6
|
||||
interface: "{{ testint2 }}"
|
||||
version: v6
|
||||
provider: "{{ connection }}"
|
||||
state: present
|
||||
addr: 'fd56:31f7:e4ad:5585::1'
|
||||
mask: 64
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue