mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
5 years ago
|
---
|
||
|
- debug:
|
||
|
msg: "START iosxr_acl_interfaces gathered integration tests on connection={{ ansible_connection }}"
|
||
|
|
||
|
- include_tasks: _remove_config.yaml
|
||
|
|
||
|
- name: Populate the device with ACLs
|
||
|
iosxr_config:
|
||
|
lines: |
|
||
|
ipv4 access-list acl_1
|
||
|
10 permit ipv4 any any
|
||
|
ipv4 access-list acl_2
|
||
|
10 permit ipv4 any any
|
||
|
ipv6 access-list acl6_1
|
||
|
10 permit ipv6 any any
|
||
|
ipv6 access-list acl6_2
|
||
|
10 permit ipv6 any any
|
||
|
|
||
|
- block:
|
||
|
- name: Merge the provided configuration with the existing running configuration
|
||
|
iosxr_acl_interfaces: &merged
|
||
|
config:
|
||
|
- name: GigabitEthernet0/0/0/0
|
||
|
access_groups:
|
||
|
- afi: ipv4
|
||
|
acls:
|
||
|
- name: acl_1
|
||
|
direction: in
|
||
|
- name: acl_2
|
||
|
direction: out
|
||
|
- afi: ipv6
|
||
|
acls:
|
||
|
- name: acl6_1
|
||
|
direction: in
|
||
|
- name: acl6_2
|
||
|
direction: out
|
||
|
|
||
|
- name: GigabitEthernet0/0/0/1
|
||
|
access_groups:
|
||
|
- afi: ipv4
|
||
|
acls:
|
||
|
- name: acl_1
|
||
|
direction: out
|
||
|
state: merged
|
||
|
register: result
|
||
|
|
||
|
- name: Gather ACL interfaces facts using gathered state
|
||
|
iosxr_acl_interfaces:
|
||
|
state: gathered
|
||
|
register: result
|
||
|
|
||
|
- name: Assert that facts were correctly generated
|
||
|
assert:
|
||
|
that: "{{ merged['after'] | symmetric_difference(result['gathered']) |length == 0 }}"
|
||
|
|
||
|
always:
|
||
|
- include_tasks: _remove_config.yaml
|