forked from Fediversity/Fediversity
note that, other than being easier to call, this maintains the TF deployment's status of remaining a glorified wrapper of the SSH deployment.
9 lines
206 B
Bash
9 lines
206 B
Bash
#! /usr/bin/env bash
|
|
set -xeuo pipefail
|
|
declare tf_env
|
|
|
|
export TF_LOG=info
|
|
|
|
cd "${tf_env}/deployment/run/tf-single-host"
|
|
# parallelism=1: limit OOM risk
|
|
tofu apply --auto-approve -lock=false -parallelism=1
|