-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1622ec5
commit 85f3681
Showing
1 changed file
with
12 additions
and
9 deletions.
There are no files selected for viewing
21 changes: 12 additions & 9 deletions
21
tests/integration/targets/iosxr_vrf_interfaces/tests/common/_populate_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
--- | ||
- name: Populate with simple overridden | ||
cisco.iosxr.iosxr_vrf_interfaces: | ||
state: overridden | ||
config: | ||
- name: GigabitEthernet0/0/0/0 | ||
- name: GigabitEthernet0/0/0/1 | ||
vrf_name: vrf_A | ||
- name: GigabitEthernet0/0/0/2 | ||
vrf_name: vrf_B | ||
- name: Populate interface - 1 | ||
cisco.iosxr.iosxr_config: | ||
lines: | ||
- 'vrf vrf_A' | ||
parents: 'interface GigabitEthernet0/0/0/1' | ||
vars: | ||
ansible_connection: ansible.netcommon.network_cli | ||
|
||
- name: Populate interface - 2 | ||
cisco.iosxr.iosxr_config: | ||
lines: | ||
- 'vrf vrf_B' | ||
parents: 'interface GigabitEthernet0/0/0/2' | ||
vars: | ||
ansible_connection: ansible.netcommon.network_cli |