7 lines
112 B
Bash
Executable file
7 lines
112 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
rm -f .terraform.lock.hcl
|
|
tofu init
|
|
tofu apply "$@"
|