diff options
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/modules/tower_workflow_job_template_node.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/awx_collection/plugins/modules/tower_workflow_job_template_node.py b/awx_collection/plugins/modules/tower_workflow_job_template_node.py index f559e1ec16..0ca4021247 100644 --- a/awx_collection/plugins/modules/tower_workflow_job_template_node.py +++ b/awx_collection/plugins/modules/tower_workflow_job_template_node.py @@ -205,10 +205,10 @@ def main(): state=dict(choices=['present', 'absent'], default='present'), ) mutually_exclusive = [("unified_job_template", "approval_node")] - required_if=[ - ['state', 'absent', ['identifier']], - ['state', 'present', ['identifier']], - ['state', 'present', ['unified_job_template', 'approval_node', 'success_nodes', 'always_nodes', 'failure_nodes'], 'true'], + required_if = [ + ['state', 'absent', ['identifier']], + ['state', 'present', ['identifier']], + ['state', 'present', ['unified_job_template', 'approval_node', 'success_nodes', 'always_nodes', 'failure_nodes'], 'true'], ] # Create a module for ourselves |