Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement awscli version support #794

Merged
merged 5 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion roles/aws/aws_cli/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
aws_cli:
refresh: false # Set to true to upgrade the AWS client
version: latest # Specify a particular version number in X.X.X format to override
refresh: false # Set to true to upgrade or downgrade the AWS client, which also clears out install files in /opt/aws-cli
19 changes: 18 additions & 1 deletion roles/aws/aws_cli/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,35 @@
when:
- aws_cli.refresh

- name: Delete AWS CLI install files when refreshing CLI version.
ansible.builtin.file:
path: /opt/aws-cli
state: absent
when:
- aws_cli.refresh

- name: Check if we already have an AWS cli bin.
ansible.builtin.stat:
path: "/usr/local/bin/aws"
register: aws_cli_bin

- name: Fetch and extract AWS cli.
- name: Fetch and extract latest AWS cli.
ansible.builtin.unarchive:
src: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
dest: /tmp
remote_src: true
when:
- not aws_cli_bin.stat.exists
- aws_cli.version == 'latest'

- name: "Fetch and extract AWS cli version {{ aws_cli.version }}."
ansible.builtin.unarchive:
src: "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-{{ aws_cli.version }}.zip"
dest: /tmp
remote_src: true
when:
- not aws_cli_bin.stat.exists
- aws_cli.version != 'latest'

- name: Install AWS cli.
ansible.builtin.command:
Expand Down