Sha256: 5c14c4b0d9d576b7617ef5e5eacc08bfbef683884aac50e896381eb33fb7f5a7
Contents?: true
Size: 843 Bytes
Versions: 30
Compression:
Stored size: 843 Bytes
Contents
#!/bin/bash set -eu # cwd: /codebuild/output/src438337164/src/github.com/boltops-tools/terraspace # will build from /tmp because terraspace/Gemfile may interfere cd /tmp export PATH=~/bin:$PATH # ~/bin/terraspace wrapper # ~/.azure/app-client.json export ARM_CLIENT_ID=$(cat ~/.azure/app-client.json | jq -r '.client_id') export ARM_CLIENT_SECRET=$(cat ~/.azure/app-client.json | jq -r '.client_secret') export ARM_SUBSCRIPTION_ID=$(cat ~/.azure/app-client.json | jq -r '.subscription_id') export ARM_TENANT_ID=$(cat ~/.azure/app-client.json | jq -r '.tenant_id') set -x terraspace new project infra --examples --plugin azurerm cd infra $CODEBUILD_SRC_DIR/.cody/shared/script/update/gemfile.sh terraspace new test demo --type stack cd app/stacks/demo cd test $CODEBUILD_SRC_DIR/.cody/shared/script/update/gemfile.sh cd - terraspace test
Version data entries
30 entries across 30 versions & 1 rubygems