6 lines
127 B
Text
6 lines
127 B
Text
|
#!/usr/bin/env bash
|
||
|
# Wrapper script to run terraform with local config
|
||
|
|
||
|
export TF_CLI_CONFIG_FILE=.terraformrc
|
||
|
exec tofu "$@"
|