mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
29 lines
974 B
YAML
29 lines
974 B
YAML
|
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
---
|
||
|
- name: Create the firewall group
|
||
|
vr_firewall_group:
|
||
|
name: '{{ firewall_group_name }}'
|
||
|
|
||
|
- name: test gather vultr firewall group facts in check mode
|
||
|
vr_firewall_group_facts:
|
||
|
check_mode: yes
|
||
|
|
||
|
- name: verify test gather vultr firewall group facts in check mode
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts.vultr_firewall_group_facts|selectattr('description','equalto','{{ firewall_group_name }}') | list | count == 1
|
||
|
|
||
|
- name: test gather vultr firewall group facts
|
||
|
vr_firewall_group_facts:
|
||
|
|
||
|
- name: verify test gather vultr firewall group facts
|
||
|
assert:
|
||
|
that:
|
||
|
- ansible_facts.vultr_firewall_group_facts|selectattr('description','equalto','{{ firewall_group_name }}') | list | count == 1
|
||
|
|
||
|
- name: Delete the firewall group
|
||
|
vr_firewall_group:
|
||
|
name: '{{ firewall_group_name }}'
|
||
|
state: absent
|