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

cloudstack: cs_zone: fix missing type bool for params (#25552)

This commit is contained in:
René Moser 2017-06-09 18:10:32 +02:00 committed by GitHub
parent 81998b963d
commit 76c598f044

View file

@ -373,8 +373,8 @@ def main():
network_domain = dict(default=None),
guest_cidr_address = dict(default=None),
dhcp_provider = dict(default=None),
local_storage_enabled = dict(default=None),
securitygroups_enabled = dict(default=None),
local_storage_enabled = dict(type='bool', default=None),
securitygroups_enabled = dict(type='bool', default=None),
state = dict(choices=['present', 'enabled', 'disabled', 'absent'], default='present'),
domain = dict(default=None),
))