mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 00:13:09 -06:00
10 lines
368 B
YAML
10 lines
368 B
YAML
---
|
|
|
|
- name: Fetch the latest version from URL
|
|
ansible.builtin.set_fact:
|
|
atl_product_version_json: "{{ lookup('url', '{{ atl_mpac_api_base_url }}/parent-software/jira/versions?state=ACTIVE&limit=1') }}"
|
|
|
|
- name: Set the local var to retrieved version
|
|
ansible.builtin.set_fact:
|
|
atl_latest_version: "{{ atl_product_version_json.versions[0].versionNumber }}"
|