You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# terraform-install
2
2
3
-
Bash command line to automate install and manage Terraformupdate from official executable binary file.
3
+
Bash script to automate install and manage different versions of Terraform. Easily install Terraform and manage the binary executable update from official releases page.
4
4
5
5
## How to Install
6
6
@@ -10,6 +10,13 @@ cd terraform-install
10
10
make install
11
11
```
12
12
13
+
After installation completed, you need to add this two lines of code into your Profile, `.bashrc` or `.zshrc` file.
14
+
15
+
```
16
+
export TFM_INSTALL="$HOME/.tfm"
17
+
export PATH="$TFM_INSTALL/bin:$PATH"
18
+
```
19
+
13
20
## Usage
14
21
15
22
### Lists all available Terraform versions from official download page
0 commit comments