diff options
author | Yanis Guenane <yguenane@gmail.com> | 2018-07-19 11:02:25 +0200 |
---|---|---|
committer | René Moser <mail@renemoser.net> | 2018-07-19 11:02:25 +0200 |
commit | 1754f533b5efd0ca4347f54dcf58fbd0cb168d0a (patch) | |
tree | e5e76584452293de7d1a6ef13392c9bde1804297 /test/legacy/vultr.yml | |
parent | f6ca231729843d286b1f923297b22818711df843 (diff) | |
download | ansible-1754f533b5efd0ca4347f54dcf58fbd0cb168d0a.tar.gz |
Vultr: Introducing vr_firewall_group_facts module (#42997)
This commit introduces a new module called vr_firewall_group_facts.
This module aims to return the list of firewall groups avaiable
avaiable in Vultr.
Sample available here:
```
"vultr_firewall_group_facts": [
{
"date_created": "2018-07-17 12:22:51",
"date_modified": "2018-07-17 12:24:47",
"description": "ansible-firewall-group",
"id": "fb5a0876",
"instance_count": 0,
"max_rule_count": 50,
"rule_count": 1
}
]
```
Diffstat (limited to 'test/legacy/vultr.yml')
-rw-r--r-- | test/legacy/vultr.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/legacy/vultr.yml b/test/legacy/vultr.yml index 05d6c8e812..c6d90a760a 100644 --- a/test/legacy/vultr.yml +++ b/test/legacy/vultr.yml @@ -10,6 +10,7 @@ - { role: vr_dns_domain_facts, tags: test_vr_dns_domain_facts } - { role: vr_dns_record, tags: test_vr_dns_record } - { role: vr_firewall_group, tags: test_vr_firewall_group } + - { role: vr_firewall_group_facts, tags: test_vr_firewall_group_facts } - { role: vr_firewall_rule, tags: test_vr_firewall_rule } - { role: vr_os_facts, tags: test_vr_os_facts } - { role: vr_plan_facts, tags: test_vr_plan_facts } |