Sha256: 1f9b1ab38d62ef887518960cd1445b67bf83ec5459385d03ddff63b45a78acc4

Contents?: true

Size: 584 Bytes

Versions: 3

Compression:

Stored size: 584 Bytes

Contents

#!/usr/bin/env bash

set -xe

# Apply Terraform IaC
pushd terraform

terraform init
terraform apply

popd

# Set up an SSH tunnel to Bastion
. bin/setup-tunnel.sh

# Render BOSH manifest and related files
kite render manifest bosh --cloud aws

# Deploy BOSH Director
./bin/bosh-install.sh

# Set the needed environment variables
. bin/set-env.sh

# Render Vault manifest
kite render manifest vault --cloud aws

# Deploy Vault
./bin/vault-deploy.sh

# Render Concourse manifest and related files
kite render manifest concourse --cloud aws

# Deploy Concourse
./bin/concourse-deploy.sh

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kite-0.2.0 tpl/aws/bin/base/bootstrap.sh
kite-0.1.0 tpl/aws/bin/base/bootstrap.sh
kite-0.0.9 tpl/aws/bin/base/bootstrap.sh