2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
2020-10-27 09:45:22 +03:00
|
|
|
source ~/utils/utils.sh
|
|
|
|
|
|
2020-09-10 14:34:08 +03:00
|
|
|
echo Installing aws...
|
2020-11-09 11:49:16 +03:00
|
|
|
AWS_CLI_URL="https://awscli.amazonaws.com/AWSCLIV2.pkg"
|
|
|
|
|
download_with_retries $AWS_CLI_URL "/tmp"
|
2020-11-09 20:07:01 +03:00
|
|
|
sudo installer -pkg /tmp/AWSCLIV2.pkg -target /
|
2020-09-10 14:34:08 +03:00
|
|
|
|
|
|
|
|
echo Installing aws sam cli...
|
|
|
|
|
brew tap aws/tap
|
|
|
|
|
brew install aws-sam-cli
|
|
|
|
|
|
|
|
|
|
echo "Install aws cli session manager"
|
2020-12-22 14:48:31 +07:00
|
|
|
brew install --cask session-manager-plugin
|
2020-12-17 19:37:19 +07:00
|
|
|
|
2021-01-22 09:26:28 +03:00
|
|
|
invoke_tests "Common" "AWS"
|