diff --git a/.circleci/config.yml b/.circleci/config.yml index 029571a..acf1b1b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: steps: - run: apk add --update --no-cache make ca-certificates openssh-keygen openssh-client bash python - run: mkdir -p /opt/bin && ln -s /opt/bin/terraform /usr/bin/terraform && ln -s /opt/bin/kubectl /usr/bin/kubectl - - run: wget https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip -O /tmp/terraform.zip && unzip /tmp/terraform.zip -d /opt/bin && chmod +x /opt/bin/terraform + - run: wget https://releases.hashicorp.com/terraform/0.12.23/terraform_0.12.23_linux_amd64.zip -O /tmp/terraform.zip && unzip /tmp/terraform.zip -d /opt/bin && chmod +x /opt/bin/terraform - run: wget https://storage.googleapis.com/kubernetes-release/release/v1.14.0/bin/linux/amd64/kubectl -O /opt/bin/kubectl && chmod +x /opt/bin/kubectl - run: ssh-keygen -q -t rsa -N '' -f $HOME/.ssh/id_rsa - checkout @@ -20,4 +20,3 @@ jobs: name: Cleanup Failed Test command: make destroy when: on_fail -