mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
Terraform is no longer open source software and has been removed and replaced with OpenTofu. Signed-off-by: ChengHao Yang <17496418+tico88612@users.noreply.github.com>
9 lines
258 B
Bash
Executable File
9 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
|
|
chmod +x install-opentofu.sh
|
|
./install-opentofu.sh --install-method standalone
|
|
rm -f install-opentofu.sh
|
|
tofu --version
|