I am trying to use the new Ansible Tower module - tower_project to create new projects.
the playbook runs but in the GUI, the SCM Branch and SCM credentials dont appear…
Playbook -
`
- name: Create new Tower Project - Example
become: yes
become_user: awx
tower_project:
name: Tower-v3-Test-Project
organization: AMCE CORP
description: Configures Tower Project
scm_type: git
scm_credential: ACME-Cred
scm_url: git@git.example.com:infra/ansible-example.git
scm_update_on_launch: true
state: present
`
Any ideas??
/rp