diff options
author | sean-m-sullivan <ssulliva@redhat.com> | 2021-02-15 00:17:04 +0100 |
---|---|---|
committer | sean-m-sullivan <ssulliva@redhat.com> | 2021-02-15 00:17:04 +0100 |
commit | 5548f7e91d74401f2f56df2c2105fedc334b30c1 (patch) | |
tree | 3c03a9e5f90b008f20e0bd4d1477e2bf2f76db08 /awx_collection/plugins/modules/tower_project.py | |
parent | Merge pull request #39 from ansible/devel (diff) | |
download | awx-5548f7e91d74401f2f56df2c2105fedc334b30c1.tar.xz awx-5548f7e91d74401f2f56df2c2105fedc334b30c1.zip |
fix default value bug
Diffstat (limited to '')
-rw-r--r-- | awx_collection/plugins/modules/tower_project.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awx_collection/plugins/modules/tower_project.py b/awx_collection/plugins/modules/tower_project.py index 015badc02b..76cef63f10 100644 --- a/awx_collection/plugins/modules/tower_project.py +++ b/awx_collection/plugins/modules/tower_project.py @@ -229,8 +229,8 @@ def main(): scm_type=dict(choices=['manual', 'git', 'svn', 'insights'], default='manual'), scm_url=dict(), local_path=dict(), - scm_branch=dict(default=''), - scm_refspec=dict(default=''), + scm_branch=dict(), + scm_refspec=dict(), credential=dict(aliases=['scm_credential']), scm_clean=dict(type='bool', default=False), scm_delete_on_update=dict(type='bool', default=False), |