mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 00:13:09 -06:00
9 lines
366 B
YAML
9 lines
366 B
YAML
---
|
|
|
|
- name: Fetch the latest version from URL
|
|
ansible.builtin.set_fact:
|
|
atl_product_version_json: "{{ lookup('url', 'https://marketplace.atlassian.com/rest/2/products/key/jira-software/versions') }}"
|
|
|
|
- name: Set the local var to retrieved version
|
|
ansible.builtin.set_fact:
|
|
atl_latest_version: "{{ atl_product_version_json._embedded.versions[0].name }}" |