summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/cloud/cloudstack/cs_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/cloud/cloudstack/cs_template.py')
-rw-r--r--lib/ansible/modules/cloud/cloudstack/cs_template.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/cloud/cloudstack/cs_template.py b/lib/ansible/modules/cloud/cloudstack/cs_template.py
index 98fc0abc97..f33a0b403a 100644
--- a/lib/ansible/modules/cloud/cloudstack/cs_template.py
+++ b/lib/ansible/modules/cloud/cloudstack/cs_template.py
@@ -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.
@@ -611,7 +611,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),