chore: add terraform for spinning up load test cluster (#7504)

Adds terraform configs for spinning up loadtest environments
This commit is contained in:
Cian Johnston
2023-05-15 15:56:47 +01:00
committed by GitHub
parent dab1d1fe20
commit 854e974bb4
14 changed files with 786 additions and 4 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# This is a shim for easily executing Coder commands against a loadtest cluster
# without having to overwrite your own session/URL
SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
CONFIG_DIR="${SCRIPT_DIR}/.coderv2"
CODER_BIN="${CONFIG_DIR}/coder"
exec "${CODER_BIN}" --global-config "${CONFIG_DIR}" "$@"