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:
parent
5d402f31c8
commit
82a1208e64
1 changed files with 1 additions and 1 deletions
|
@ -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']),
|
||||
|
|
Loading…
Reference in a new issue