1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

cloudstack: cs_template: default is_routing=None, fixes template upload for users (#26248)

This commit is contained in:
René Moser 2017-06-29 17:43:31 +02:00 committed by GitHub
parent 171d903d04
commit 363761fc16

View file

@ -164,7 +164,7 @@ options:
- True if the template type is routing i.e., if template is used to deploy router.
- Only considered if C(url) is used.
required: false
default: false
default: null
format:
description:
- The format for the template.
@ -622,7 +622,7 @@ def main():
is_featured = dict(type='bool', default=False),
is_dynamically_scalable = dict(type='bool', default=False),
is_extractable = dict(type='bool', default=False),
is_routing = dict(type='bool', default=False),
is_routing = dict(type='bool', default=None),
checksum = dict(default=None),
template_filter = dict(default='self', choices=['featured', 'self', 'selfexecutable', 'sharedexecutable', 'executable', 'community']),
hypervisor = dict(choices=CS_HYPERVISORS, default=None),