mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Set type on floating_ip_pools in os_server
This has been expected as a list, so let's be explicit about it so it will work correctly in 2.1 release.
This commit is contained in:
committed by
Matt Clay
parent
5d402f31c8
commit
82a1208e64
@@ -555,7 +555,7 @@ def main():
|
||||
config_drive = dict(default=False, type='bool'),
|
||||
auto_ip = dict(default=True, type='bool', aliases=['auto_floating_ip', 'public_ip']),
|
||||
floating_ips = dict(default=None, type='list'),
|
||||
floating_ip_pools = dict(default=None),
|
||||
floating_ip_pools = dict(default=None, type='list'),
|
||||
volume_size = dict(default=False, type='int'),
|
||||
boot_from_volume = dict(default=False, type='bool'),
|
||||
boot_volume = dict(default=None, aliases=['root_volume']),
|
||||
|
||||
Reference in New Issue
Block a user