From b0f6f9650d0bbdb9f9bec706ef6a69eb2b7ae998 Mon Sep 17 00:00:00 2001 From: Jamie B <53781962+JamieB-gu@users.noreply.github.com> Date: Fri, 21 Jul 2023 14:16:05 +0100 Subject: [PATCH] `aws-tools` role uses awscli v1.29.8 This is the current latest version of the awscli. Attempts to solve a problem where the awscli was failing to install correctly. The problem was fixed in a recent version of the awscli: https://github.com/aws/aws-cli/issues/8036#issuecomment-1640932993 The awscli was previously pinned to a specific version due to a lack of support for Python 3.4/3.5: https://github.com/guardian/amigo/pull/549 --- roles/aws-tools/tasks/install-pip-aws-cli-Debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/aws-tools/tasks/install-pip-aws-cli-Debian.yml b/roles/aws-tools/tasks/install-pip-aws-cli-Debian.yml index 7140d7d7..f7120f8c 100644 --- a/roles/aws-tools/tasks/install-pip-aws-cli-Debian.yml +++ b/roles/aws-tools/tasks/install-pip-aws-cli-Debian.yml @@ -3,4 +3,4 @@ apt: name=python3-pip state=present - name: Install latest AWS CLI - command: pip3 install -I awscli==1.19.12 + command: pip3 install -I awscli==1.29.8