README: Added info to get 64bit opentofu version

This commit is contained in:
Marcel Straub
2025-09-04 09:04:23 +02:00
parent ecb2349156
commit e65f99c728

View File

@@ -18,6 +18,9 @@ tbd. For now, it's expected to have happened already.
### Install OpenTofu
> **IMPORTANT**: Ensure that the amd64 version of OpenTofu is installed. The i386 32bit plugins are providing a lot of trouble, i.e. failing provisionings, unparsable data structures, etc.pp.
```shell
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg
@@ -30,13 +33,8 @@ echo \
"deb [signed-by=/etc/apt/keyrings/opentofu.gpg,/etc/apt/keyrings/opentofu-repo.gpg] https://packages.opentofu.org/opentofu/tofu/any/ any main
deb-src [signed-by=/etc/apt/keyrings/opentofu.gpg,/etc/apt/keyrings/opentofu-repo.gpg] https://packages.opentofu.org/opentofu/tofu/any/ any main" | \
sudo tee /etc/apt/sources.list.d/opentofu.list > /dev/null
```
```shell
wget -O /tmp/tofu.deb https://github.com/opentofu/opentofu/releases/download/v1.10.5/tofu_1.10.5_386.deb
sudo dpkg -i /tmp/tofu.deb
rm /tmp/tofu.deb
sudo apt install -f
sudo apt install tofu
```