Added function for removing old terraform version at MACOS. It leaves only 2 latest versions
This commit is contained in:
parent
0dd9e2a106
commit
7dd6660688
@ -69,6 +69,12 @@ function install_terraform() {
|
|||||||
brew install tflint -q
|
brew install tflint -q
|
||||||
brew install tfenv -q
|
brew install tfenv -q
|
||||||
TFENV_ARCH=amd64 tfenv install latest
|
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
|
else
|
||||||
GO111MODULE=on go install github.com/hashicorp/terraform@latest
|
GO111MODULE=on go install github.com/hashicorp/terraform@latest
|
||||||
curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
|
curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
|
||||||
|
Loading…
Reference in New Issue
Block a user