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:
Nathaniel Case 2018-07-02 09:43:51 -04:00 committed by GitHub
commit a197125954
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
127 changed files with 713 additions and 0 deletions

View file

@ -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