mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
10 lines
203 B
Bash
Executable file
10 lines
203 B
Bash
Executable file
#! /usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p terraform jq
|
|
|
|
set -e
|
|
|
|
export AWS_ACCESS_KEY_ID=`cat ~/.ssh/scw_key_id`
|
|
export AWS_SECRET_ACCESS_KEY=`jq '.token' -r ~/.scwrc`
|
|
|
|
terraform "$@" terraform
|
|
|