Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 531 Bytes

opentofu.md

File metadata and controls

28 lines (20 loc) · 531 Bytes

OpenTofu CLI - Preparatory steps

Install the OpenTofu Command Line Interface (CLI).

Example

macOS installation and setup

brew update
brew install opentofu
tofu version
How to enable tab completion
$ which tofu
  /opt/homebrew/bin/tofu
$ echo "complete -C /opt/homebrew/bin/tofu tofu" >> ~/.bash_profile
$ source ~/.bash_profile