We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebff4eb commit 8e1192dCopy full SHA for 8e1192d
terraform/install/README.md
@@ -1,4 +1,13 @@
1
-## Install Terraform CLI on Ubuntu/Debian Linux OS
+# Install Using Script
2
+```
3
+sudo wget https://raw.githubusercontent.com/lerndevops/labs/master/scripts/installTerraform.sh -P /tmp
4
+sudo chmod 755 /tmp/installTerraform.sh
5
+sudo bash /tmp/installTerraform.sh
6
7
+
8
+# Manual Installation Steps
9
10
+### Install Terraform CLI on Ubuntu/Debian Linux OS
11
12
```
13
sudo curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
@@ -8,7 +17,7 @@ sudo apt-get update && sudo apt-get install terraform
17
Verify : terraform version
18
19
-## Install Terraform CLI on CentOS/RHEL Linux OS
20
+### Install Terraform CLI on CentOS/RHEL Linux OS
21
22
14
23
sudo yum install -y yum-utils
0 commit comments