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