mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
12 lines
170 B
Bash
Executable file
12 lines
170 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
export HCLOUD_TOKEN=$(./get_hcloud_token.sh)
|
|
ENVIRONMENT=$(cat .environment)
|
|
|
|
cd terraform
|
|
|
|
terraform workspace select $ENVIRONMENT
|
|
terraform "$@"
|
|
|