22.2. Launching a Job Template via the API¶
Ansible Tower makes it simple to launch a job based on a Job Template from Tower’s API or by using the tower-cli
command line tool.
Launching a Job Template also:
Ansible is a radically simple IT automation engine that automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs. Designed for multi-tier deployments since day one, Ansible models your IT infrastructure by describing how all of your systems inter-relate, rather than just managing one system at a time. Apr 12, 2021 curl; python-apt; All hosts must be listed in the following format in the /etc/ansible/hosts or relevant file: servers host1 ansiblesshhost=10.171.134.39 host2 ansiblesshhost=51.143.50.51 Ping test: ansible -m ping all Download the onboarding package. Download the onboarding package from Microsoft Defender Security Center. Ansible Tower makes it simple to launch a job based on a Job Template from Tower’s API or by using the tower-cli command line tool. Launching a Job Template also: Creates a Job Record Gives that Job Record all of the attributes on the Job Template, combined with certain data you can give in this launch endpoint (“runtime” data).
- Creates a Job Record
- Gives that Job Record all of the attributes on the Job Template, combined with certain data you can give in this launch endpoint (“runtime” data)
- Runs Ansible with the combined data from the JT and runtime data
Runtime data takes precedence over the Job Template data, contingent on the ask_
_on_launch
field on the job template being set to True. For example, a runtime credential is only accepted if the Job Template has ask_credential_on_launch
set to True.
Launching from Job Templates via the API follows the following workflow:
GET
https://your.tower.server/api/v2/job_templates/<yourjobtemplateid>/launch/
. The response will contain data such asjob_template_data
anddefaults
which give information about the job template.Inspect returned data for runtime data that is needed to launch. Inspecting the OPTIONS of the launch endpoint may also help deduce what POST fields are allowed.
Warning
Providing certain runtime credentials could introduce the need for a password not listed in
passwords_needed_to_start
.passwords_needed_to_start
: List of passwords neededcredential_needed_to_start
: Booleaninventory_needed_to_start
: Booleanvariables_needed_to_start
: List of fields that need to be passed inside of theextra_vars
dictionary
Inspect returned data for optionally allowed runtime data that the user should be asked for.
ask_variables_on_launch
: Boolean specifying whether to prompt the user for additional variables to pass to Ansible inside of extra_varsask_tags_on_launch
: Boolean specifying whether to prompt the user forjob_tags
on launch (allow allows use ofskip_tags
for convienience)ask_job_type_on_launch
: Boolean specifying whether to prompt the user forjob_type
on launchask_limit_on_launch
: Boolean specifying whether to prompt the user forlimit
on launchask_inventory_on_launch
: Boolean specifying whether to prompt the user for the related fieldinventory
on launchask_credential_on_launch
: Boolean specifying whether to prompt the user for the related fieldcredential
on launchsurvey_enabled
: Boolean specifying whether to prompt the user for additionalextra_vars
, following the job template’ssurvey_spec
Q&A format
POST
https://your.tower.server/api/v2/job_templates/<yourjobtemplateid>/launch/
with any required data gathered during the previous step(s). The variables that can be passed in the request data for this action include the following.extra_vars
: A string that represents a JSON or YAML formatted dictionary (with escaped parentheses) which includes variables given by the user, including answers to survey questionsjob_tags
: A string that represents a comma-separated list of tags in the playbook to runlimit
: A string that represents a comma-separated list of hosts or groups to operate oninventory
: A integer value for the foreign key of an inventory to use in this job runcredential
: A integer value for the foreign key of a credential to use in this job run
The POST will return data about the job and information about whether the runtime data was accepted. The job id is given in the job
field to maintain compatibility with tools written before 3.0. The response will look similar to:
In this example, values for credential
and job_tags
were given while the job template ask_credential_on_launch
and ask_tags_on_launch
were False. These were rejected because the job template author did not allow using runtime values for them.
You can see details about the job in this response. To get an updated status, you will need to do a GET request to the job page, /jobs/4
, or follow the url
link in the response. You can also find related links to cancel, relaunch, and so fourth.
Note
When querying a job on a non-execution node, an error message, stdoutcaptureismissing
displays for the result_stdout field and on the related stdout page. In order to generate the stdout, use the format=txt_download
query parameter for the related stdout page. This generates the stdout file and any refreshes to either the job or the related std will display the job output.
Note
You cannot assign a new inventory at the time of launch to a scan job. Scan jobs must be tied to a fixed inventory.
Note
Ansible Curl Command
You cannot change the Job Type at the time of launch to or from the type of “scan”. The ask_job_type_on_launch
option only enables you to toggle “run” versus “check” at launch time.