1
0
Fork 0
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:
David Passante 2019-03-13 19:06:44 +01:00 committed by René Moser
parent 07ff2a6494
commit 244a9a83aa
3 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- cs_iso - Add the 'is_public' param into argument_spec to allow the registering of public iso.

View file

@ -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),

View file

@ -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