reference instance_id in docs, fixes for calls to fail_json
This commit is contained in:
parent
15ac8e9141
commit
3913de1c43
3 changed files with 8 additions and 14 deletions
|
@ -41,10 +41,9 @@ options:
|
|||
- The org to login to for creating vapp, mostly set when the service_type is vdc.
|
||||
required: false
|
||||
default: None
|
||||
service_id:
|
||||
version_added: "2.0"
|
||||
instance_id:
|
||||
description:
|
||||
- The service id in a vchs environment to be used for creating the vapp
|
||||
- The instance id in a vchs environment to be used for creating the vapp
|
||||
required: false
|
||||
default: None
|
||||
host:
|
||||
|
@ -250,7 +249,7 @@ def main():
|
|||
try:
|
||||
desired_rules = validate_fw_rules(fw_rules)
|
||||
except VcaError, e:
|
||||
module.fail_json(e.message)
|
||||
module.fail_json(msg=e.message)
|
||||
|
||||
result = dict(changed=False)
|
||||
result['current_rules'] = current_rules
|
||||
|
|
|
@ -42,9 +42,9 @@ options:
|
|||
- The org to login to for creating vapp, mostly set when the service_type is vdc.
|
||||
required: false
|
||||
default: None
|
||||
service_id:
|
||||
instance_id:
|
||||
description:
|
||||
- The service id in a vchs environment to be used for creating the vapp
|
||||
- The instance id in a vchs environment to be used for creating the vapp
|
||||
required: false
|
||||
default: None
|
||||
host:
|
||||
|
@ -200,7 +200,7 @@ def main():
|
|||
purge_rules = module.params['purge_rules']
|
||||
|
||||
if not purge_rules and not nat_rules:
|
||||
module.fail_json('Must define purge_rules or nat_rules')
|
||||
module.fail_json(msg='Must define purge_rules or nat_rules')
|
||||
|
||||
vca = vca_login(module)
|
||||
|
||||
|
|
|
@ -104,15 +104,10 @@ options:
|
|||
- The org to login to for creating vapp, mostly set when the service_type is vdc.
|
||||
required: false
|
||||
default: None
|
||||
service_id:
|
||||
description:
|
||||
- The service id in a vchs environment to be used for creating the vapp
|
||||
required: false
|
||||
default: None
|
||||
instance_id:
|
||||
description:
|
||||
- The vCloud Air instance ID
|
||||
required: no
|
||||
- The instance id in a vchs environment to be used for creating the vapp
|
||||
required: false
|
||||
default: None
|
||||
host:
|
||||
description:
|
||||
|
|
Loading…
Reference in a new issue