mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
rax - removed service parameter (#2020)
* removed service parameter * added changelog fragment
This commit is contained in:
parent
f8859af377
commit
84b54ad6a2
5 changed files with 2 additions and 14 deletions
2
changelogs/fragments/2020-remove-unused-param-in-rax.yml
Normal file
2
changelogs/fragments/2020-remove-unused-param-in-rax.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
removed_features:
|
||||||
|
- rax - unused parameter ``service`` removed (https://github.com/ansible-collections/community.general/pull/2020).
|
|
@ -817,7 +817,6 @@ def main():
|
||||||
meta=dict(type='dict', default={}),
|
meta=dict(type='dict', default={}),
|
||||||
name=dict(),
|
name=dict(),
|
||||||
networks=dict(type='list', elements='str', default=['public', 'private']),
|
networks=dict(type='list', elements='str', default=['public', 'private']),
|
||||||
service=dict(),
|
|
||||||
state=dict(default='present', choices=['present', 'absent']),
|
state=dict(default='present', choices=['present', 'absent']),
|
||||||
user_data=dict(no_log=True),
|
user_data=dict(no_log=True),
|
||||||
wait=dict(default=False, type='bool'),
|
wait=dict(default=False, type='bool'),
|
||||||
|
@ -833,13 +832,6 @@ def main():
|
||||||
if not HAS_PYRAX:
|
if not HAS_PYRAX:
|
||||||
module.fail_json(msg='pyrax is required for this module')
|
module.fail_json(msg='pyrax is required for this module')
|
||||||
|
|
||||||
service = module.params.get('service')
|
|
||||||
|
|
||||||
if service is not None:
|
|
||||||
module.fail_json(msg='The "service" attribute has been deprecated, '
|
|
||||||
'please remove "service: cloudservers" from your '
|
|
||||||
'playbook pertaining to the "rax" module')
|
|
||||||
|
|
||||||
auto_increment = module.params.get('auto_increment')
|
auto_increment = module.params.get('auto_increment')
|
||||||
boot_from_volume = module.params.get('boot_from_volume')
|
boot_from_volume = module.params.get('boot_from_volume')
|
||||||
boot_volume = module.params.get('boot_volume')
|
boot_volume = module.params.get('boot_volume')
|
||||||
|
|
|
@ -64,8 +64,6 @@ plugins/modules/cloud/ovirt/ovirt_vm_facts.py validate-modules:parameter-type-no
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
||||||
plugins/modules/cloud/rackspace/rax_mon_notification_plan.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/rackspace/rax_mon_notification_plan.py validate-modules:parameter-list-no-elements
|
||||||
|
|
|
@ -63,8 +63,6 @@ plugins/modules/cloud/ovirt/ovirt_vm_facts.py validate-modules:parameter-type-no
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path # fix needed
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-invalid-choice
|
plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-invalid-choice
|
||||||
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
||||||
plugins/modules/cloud/rackspace/rax_mon_notification_plan.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/rackspace/rax_mon_notification_plan.py validate-modules:parameter-list-no-elements
|
||||||
|
|
|
@ -94,8 +94,6 @@ plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:deprecation-m
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:doc-missing-type
|
||||||
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:invalid-documentation
|
plugins/modules/cloud/ovirt/ovirt_vmpool_facts.py validate-modules:invalid-documentation
|
||||||
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path
|
plugins/modules/cloud/rackspace/rax.py use-argspec-type-path
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:doc-missing-type
|
|
||||||
plugins/modules/cloud/rackspace/rax.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
|
||||||
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
|
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
|
||||||
plugins/modules/cloud/scaleway/scaleway_image_facts.py validate-modules:deprecation-mismatch
|
plugins/modules/cloud/scaleway/scaleway_image_facts.py validate-modules:deprecation-mismatch
|
||||||
|
|
Loading…
Reference in a new issue