37 lines
940 B
YAML
37 lines
940 B
YAML
|
---
|
||
|
- debug:
|
||
|
msg: "Start eos_acl_interfaces rendered integration tests ansible_connection={{ ansible_connection }}"
|
||
|
|
||
|
|
||
|
- block:
|
||
|
|
||
|
- name: render given acl interfaces configuration
|
||
|
eos_acl_interfaces:
|
||
|
config:
|
||
|
- name: "{{ Interfaces['int1'] }}"
|
||
|
access_groups:
|
||
|
- afi: ipv4
|
||
|
acls:
|
||
|
- name: aclv401
|
||
|
direction: in
|
||
|
- name: aclv402
|
||
|
direction: out
|
||
|
- afi: ipv6
|
||
|
acls:
|
||
|
- name: aclv601
|
||
|
direction: out
|
||
|
- name: "{{ Interfaces['int2'] }}"
|
||
|
access_groups:
|
||
|
- afi: ipv6
|
||
|
acls:
|
||
|
- name: aclv601
|
||
|
direction: in
|
||
|
state: rendered
|
||
|
become: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.rendered|symmetric_difference(merged.commands) == []"
|