From 49e2a3fa5a89ff4d0722de494f0eb01ef5c73bc5 Mon Sep 17 00:00:00 2001 From: sean-m-sullivan Date: Wed, 26 Aug 2020 23:44:31 -0500 Subject: [PATCH] update documentation --- .../plugins/modules/tower_job_launch.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/tower_job_launch.py b/awx_collection/plugins/modules/tower_job_launch.py index 9179c416e7..a016d1d30b 100644 --- a/awx_collection/plugins/modules/tower_job_launch.py +++ b/awx_collection/plugins/modules/tower_job_launch.py @@ -81,6 +81,22 @@ options: description: - Passwords for credentials which are set to prompt on launch type: dict + wait: + description: + - Wait for the job to complete. + default: True + type: bool + interval: + description: + - The interval to request an update from Tower. + required: False + default: 1 + type: float + timeout: + description: + - If waiting for the job to complete this will abort after this + amount of seconds + type: int extends_documentation_fragment: awx.awx.auth ''' @@ -145,7 +161,7 @@ def main(): credential_passwords=dict(type='dict'), wait=dict(default=False, type='bool'), interval=dict(default=1.0, type='float'), - timeout=dict(default=None, type='int'), + timeout=dict(default=None, type='int'), ) # Create a module for ourselves