mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 17:03:06 -06:00
DCD-686: Use dict var to store results of urlsplit
This commit is contained in:
@@ -29,13 +29,13 @@
|
|||||||
|
|
||||||
- name: Parse the manifest URL
|
- name: Parse the manifest URL
|
||||||
set_fact:
|
set_fact:
|
||||||
atl_backup_manifest_url: "{{ atl_backup_manifest_url | urlsplit }}"
|
atl_backup_manifest_dict: "{{ atl_backup_manifest_url | urlsplit }}"
|
||||||
|
|
||||||
- name: Extract manifest file information
|
- name: Extract manifest file information
|
||||||
set_fact:
|
set_fact:
|
||||||
atl_backup_manifest_bucket: "{{ atl_backup_manifest_url.hostname }}"
|
atl_backup_manifest_bucket: "{{ atl_backup_manifest_dict.hostname }}"
|
||||||
atl_backup_manifest_path: "{{ atl_backup_manifest_url.path }}"
|
atl_backup_manifest_path: "{{ atl_backup_manifest_dict.path }}"
|
||||||
atl_backup_manifest_dest: "{{ atl_installer_temp }}/{{ atl_backup_manifest_url.path | basename }}"
|
atl_backup_manifest_dest: "{{ atl_installer_temp }}/{{ atl_backup_manifest_dict.path | basename }}"
|
||||||
|
|
||||||
- name: Fetch the manifest from S3
|
- name: Fetch the manifest from S3
|
||||||
aws_s3:
|
aws_s3:
|
||||||
|
|||||||
Reference in New Issue
Block a user