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