From ded55778327087917048fa19257b3fdda2e58697 Mon Sep 17 00:00:00 2001 From: Caleb Boylan Date: Tue, 21 Apr 2020 09:39:16 -0700 Subject: [PATCH] Collection: Fix the tower_project scm_allow_override --- awx_collection/plugins/modules/tower_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/tower_project.py b/awx_collection/plugins/modules/tower_project.py index d01b371474..d2cd3cbf9e 100644 --- a/awx_collection/plugins/modules/tower_project.py +++ b/awx_collection/plugins/modules/tower_project.py @@ -254,7 +254,7 @@ def main(): if scm_credential is not None: project_fields['credential'] = scm_credential_id if scm_allow_override is not None: - project_fields['scm_allow_override'] = scm_allow_override + project_fields['allow_override'] = scm_allow_override if scm_type == '': project_fields['local_path'] = local_path