mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
Signed-off-by: ollevche <ollevche@gmail.com> Signed-off-by: Oleksandr Levchenkov <ollevche@gmail.com>
10 lines
321 B
PowerShell
10 lines
321 B
PowerShell
# Download the installer script:
|
|
Invoke-WebRequest -outfile "install-opentofu.ps1" -uri "https://get.opentofu.org/install-opentofu.ps1"
|
|
|
|
# Please inspect the downloaded script at this point.
|
|
|
|
# Run the installer:
|
|
& .\install-opentofu.ps1 -installMethod standalone
|
|
|
|
# Remove the installer:
|
|
Remove-Item install-opentofu.ps1 |