We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97b0e61 commit 61f9ff0Copy full SHA for 61f9ff0
zsh/functions/functions.zsh
@@ -21,13 +21,17 @@ get_namespace_upper() {
21
echo "$1" | tr '[:lower:]' '[:lower:]'
22
}
23
24
+# Temporary fix until ....
25
+TF_DEFAULT_VERSION="1.7.5"
26
+TF_PRODUCT=terraform
27
+
28
load-tofuswitch() {
29
# https://tfswitch.warrensbox.com/usage/ci-cd/
30
local tfswitchrc_path=".tfswitchrc"
31
local tf_path=".opentofu-version"
32
33
if [ -f "$tfswitchrc_path" ]; then
- TF_PRODUCT=opentofu
34
+ TF_PRODUCT=terraform
35
tfswitch
36
elif [ -f "$tf_path" ]; then
37
TF_PRODUCT=opentofu
0 commit comments