1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

vultr_server_facts: fix gather facts fails when firewall is enabled on a VM (#48342)

This commit is contained in:
Clément GIBAUD 2018-11-09 07:48:08 +01:00 committed by René Moser
parent 8c2ccb8b31
commit 2436aa1a4e

View file

@ -114,7 +114,7 @@ class AnsibleVultrServerFacts(Vultr):
self.returns = {
"APPID": dict(key='application', convert_to='int', transform=self._get_application_name),
"FIREWALLGROUPID": dict(key='firewallgroup', convert_to='int', transform=self._get_firewallgroup_name),
"FIREWALLGROUPID": dict(key='firewallgroup', transform=self._get_firewallgroup_name),
"SUBID": dict(key='id', convert_to='int'),
"VPSPLANID": dict(key='plan', convert_to='int', transform=self._get_plan_name),
"allowed_bandwidth_gb": dict(convert_to='int'),