add more for Alpine
This commit is contained in:
13
tasks/archive/terraform.yml
Normal file
13
tasks/archive/terraform.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
- name: Download terraform archive
|
||||
ansible.builtin.get_url:
|
||||
dest: "{{ d_tempdir.path }}/{{ terraform.file }}"
|
||||
url: "{{ terraform.url }}/{{ terraform.file }}"
|
||||
decompress: false
|
||||
mode: '0644'
|
||||
|
||||
- name: Extract terraform archive
|
||||
become: "{{ ext_become }}"
|
||||
ansible.builtin.unarchive:
|
||||
dest: "{{ path.archive }}/terraform"
|
||||
src: "{{ d_tempdir.path }}/{{ terraform.file }}"
|
||||
remote_src: true
|
||||
Reference in New Issue
Block a user