diff --git a/tf-ec2-lab/instruction.md b/tf-ec2-lab/instruction.md index 6f99b96..51c00a2 100644 --- a/tf-ec2-lab/instruction.md +++ b/tf-ec2-lab/instruction.md @@ -78,7 +78,12 @@ brew install hashicorp/tap/terraform ``` ### Linux ```bash -sudo apt-get install terraform -y +sudo rm -f /usr/local/bin/terraform && \ +curl -LO https://releases.hashicorp.com/terraform/1.14.3/terraform_1.14.3_linux_amd64.zip && \ +sudo apt install -y unzip && \ +unzip terraform_1.14.3_linux_amd64.zip && \ +sudo mv terraform /usr/local/bin/ && \ +rm terraform_1.14.3_linux_amd64.zip ``` !Verify: @@ -142,4 +147,4 @@ instance_name = "ec2-lab-dev" Enter a value (type): **yes** to confirm that you would like to DESTROY all resources created by Terraform -CHEERS! \ No newline at end of file +CHEERS!