ansible-awxansible-tower

Get the SCM branch/tag name as playbook variable


I have a playbook which needs its own version at runtime to deploy various configuration. Today I use a script which takes a version parameter then git clone/checkout to this version and finally call ansible-playbook with -e project_version=$version.

This is fine and all but now I would like to use AWX instead.

There is the "SCM Branch" parameter when launching a job, but it doesn't seem to be exposed during the playbook run.

Is there a proper way to do this?

Here are the (ugly) workarounds I could think of:


Solution

  • Finally I implemented it myself.
    Since AWX 4, the awx_project_scm_branch and awx_job_scm_branch variables are available in playbooks environments.

    The related documentation can be found in https://docs.ansible.com/automation-controller/4.4/html/userguide/job_templates.html