mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cs_iso: fix missing param "is_public" (#53740)
* cs_iso: fix missing param "is_public" * add changelog fragment
This commit is contained in:
parent
07ff2a6494
commit
244a9a83aa
3 changed files with 3 additions and 1 deletions
2
changelogs/fragments/53738-cs_iso-missing_is_public.yml
Normal file
2
changelogs/fragments/53738-cs_iso-missing_is_public.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- cs_iso - Add the 'is_public' param into argument_spec to allow the registering of public iso.
|
|
@ -418,6 +418,7 @@ def main():
|
|||
is_ready=dict(type='bool', default=False),
|
||||
bootable=dict(type='bool'),
|
||||
is_featured=dict(type='bool'),
|
||||
is_public=dict(type='bool'),
|
||||
is_dynamically_scalable=dict(type='bool'),
|
||||
state=dict(choices=['present', 'absent'], default='present'),
|
||||
poll_async=dict(type='bool', default=True),
|
||||
|
|
|
@ -98,7 +98,6 @@ lib/ansible/modules/cloud/centurylink/clc_firewall_policy.py E335
|
|||
lib/ansible/modules/cloud/centurylink/clc_server_snapshot.py E335
|
||||
lib/ansible/modules/cloud/cloudstack/cs_cluster.py E326
|
||||
lib/ansible/modules/cloud/cloudstack/cs_host.py E326
|
||||
lib/ansible/modules/cloud/cloudstack/cs_iso.py E323
|
||||
lib/ansible/modules/cloud/cloudstack/cs_network.py E324
|
||||
lib/ansible/modules/cloud/cloudstack/cs_network_offering.py E322
|
||||
lib/ansible/modules/cloud/cloudstack/cs_network_offering.py E326
|
||||
|
|
Loading…
Reference in a new issue