Files
dc-deployments-automation/roles/bitbucket_dataset_restore/tasks/main.yml
2020-01-08 16:36:08 -08:00

13 lines
338 B
YAML

---
- name: Copy Bitbucket dataset from s3
get_url:
url: "{{ atl_bitbucket_dataset_url }}"
dest: /media/atl/bitbucket/shared/data/migration/import/
- name: Create netrc file
content: "machine localhost username admin password {{ atl_bitbucket_admin_password }}"
dest: "/root/.netrc"
owner: root
group: root
mode: 644