Sha256: 4d7075fa6d72e7651aba60417ec0a366529cc972c29e0dbe429fd8fb63c0bba5

Contents?: true

Size: 550 Bytes

Versions: 16

Compression:

Stored size: 550 Bytes

Contents

#!/bin/bash

set -evx

# Don't run acceptance tests on forks. The decryption keys are not available.
if [[ $SUITE ]] && [[ $encrypted_e2edbb28e76c_key ]]; then

  # download terraform
  wget "https://releases.hashicorp.com/terraform/0.7.4/terraform_0.7.4_linux_amd64.zip" -O tf.zip

   # inflate archive
   unzip tf.zip -d bin

   # decrypt pem
   openssl aes-256-cbc -K $encrypted_e2edbb28e76c_key -iv $encrypted_e2edbb28e76c_iv -in ci/es-infrastructure.pem.enc -out es-infrastructure.pem -d
   mkdir -p ~/.ssh
   mv es-infrastructure.pem ~/.ssh
fi

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
mixlib-install-3.9.0 ci/before-script.sh
mixlib-install-3.8.0 ci/before-script.sh
mixlib-install-3.7.0 ci/before-script.sh
mixlib-install-3.6.0 ci/before-script.sh
mixlib-install-3.5.1 ci/before-script.sh
mixlib-install-3.5.0 ci/before-script.sh
mixlib-install-3.4.0 ci/before-script.sh
mixlib-install-3.3.4 ci/before-script.sh
mixlib-install-3.3.3 ci/before-script.sh
mixlib-install-3.3.2 ci/before-script.sh
mixlib-install-3.3.1 ci/before-script.sh
mixlib-install-3.3.0 ci/before-script.sh
mixlib-install-3.2.2 ci/before-script.sh
mixlib-install-3.2.1 ci/before-script.sh
mixlib-install-3.2.0 ci/before-script.sh
mixlib-install-3.1.0 ci/before-script.sh