mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
Correct reuse_fips param to reuse_ips (#4939)
This new parameter was incorrectly named. Fixing to match the expected name in the shade library.
This commit is contained in:
parent
77975c232b
commit
56211bd7ed
1 changed files with 3 additions and 3 deletions
|
@ -187,7 +187,7 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
reuse_fips:
|
reuse_ips:
|
||||||
description:
|
description:
|
||||||
- When I(auto_ip) is true and this option is true, the I(auto_ip) code
|
- When I(auto_ip) is true and this option is true, the I(auto_ip) code
|
||||||
will attempt to re-use unassigned floating ips in the project before
|
will attempt to re-use unassigned floating ips in the project before
|
||||||
|
@ -489,7 +489,7 @@ def _create_server(module, cloud):
|
||||||
boot_volume=module.params['boot_volume'],
|
boot_volume=module.params['boot_volume'],
|
||||||
boot_from_volume=module.params['boot_from_volume'],
|
boot_from_volume=module.params['boot_from_volume'],
|
||||||
terminate_volume=module.params['terminate_volume'],
|
terminate_volume=module.params['terminate_volume'],
|
||||||
reuse_fips=module.params['reuse_fips'],
|
reuse_ips=module.params['reuse_ips'],
|
||||||
wait=module.params['wait'], timeout=module.params['timeout'],
|
wait=module.params['wait'], timeout=module.params['timeout'],
|
||||||
**bootkwargs
|
**bootkwargs
|
||||||
)
|
)
|
||||||
|
@ -590,7 +590,7 @@ def main():
|
||||||
scheduler_hints = dict(default=None, type='dict'),
|
scheduler_hints = dict(default=None, type='dict'),
|
||||||
state = dict(default='present', choices=['absent', 'present']),
|
state = dict(default='present', choices=['absent', 'present']),
|
||||||
delete_fip = dict(default=False, type='bool'),
|
delete_fip = dict(default=False, type='bool'),
|
||||||
reuse_fips = dict(default=True, type='bool'),
|
reuse_ips = dict(default=True, type='bool'),
|
||||||
)
|
)
|
||||||
module_kwargs = openstack_module_kwargs(
|
module_kwargs = openstack_module_kwargs(
|
||||||
mutually_exclusive=[
|
mutually_exclusive=[
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue