Added function for removing old terraform version at MACOS. It leaves only 2 latest versions

This commit is contained in:
Marcin Woźniak 2023-07-19 00:51:44 +02:00
parent 0dd9e2a106
commit 7dd6660688
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -69,6 +69,12 @@ function install_terraform() {
brew install tflint -q
brew install tfenv -q
TFENV_ARCH=amd64 tfenv install latest
TFENV_VER_ARRAY=($(tfenv list | grep -ioE ' [0-9.]+' | sed -e '1,2d'))
if [ "${#TFENV_VER_ARRAY[@]}" -gt "2" ]; then
for i in "${TFENV_VER_ARRAY[@]}"; do
tfenv uninstall "$i" && timestamp "Removed - terraform '$i' version"
done
fi
else
GO111MODULE=on go install github.com/hashicorp/terraform@latest
curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash