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:
parent
8c2ccb8b31
commit
2436aa1a4e
1 changed files with 1 additions and 1 deletions
|
@ -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'),
|
||||
|
|
Loading…
Reference in a new issue