13 lines
331 B
YAML
13 lines
331 B
YAML
- name: Ensure we have the unzip package
|
|
apt:
|
|
name: unzip
|
|
- name: Download the AWS CLI V2
|
|
get_url:
|
|
url: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
|
|
dest: /tmp/awscli.zip
|
|
- name: Unzip the cli to the tmp dir
|
|
shell: unzip /tmp/awscli.zip -d /tmp
|
|
- name: Run awscli installer
|
|
shell: /tmp/aws/install
|
|
|