From c3f4ffd2146ff7f45ffc3e92aadec3df0e68c61c Mon Sep 17 00:00:00 2001 From: Imran Nayer Date: Fri, 9 Jul 2021 12:26:52 -0500 Subject: [PATCH] updated CHANGELOG --- AWS/LabSetup.txt | 18 ++++++++++-------- Azure/LabSetup.txt | 6 +++++- CHANGELOG.md | 9 +++++++++ GCP/LabSetup.txt | 12 +++++++++++- 4 files changed, 35 insertions(+), 10 deletions(-) diff --git a/AWS/LabSetup.txt b/AWS/LabSetup.txt index 4b86001..560341d 100644 --- a/AWS/LabSetup.txt +++ b/AWS/LabSetup.txt @@ -1,15 +1,17 @@ -Terraform Lab Setup. +1) Select us-east-1 region in cloud console. -Select us-east-1 region. +2) Open AWS cloud shell -Open AWS cloud shell +3) Clone code repository -install terraform using following commands. +git clone https://github.com/imrannayer/terraform-workshop.git -sudo yum install -y yum-utils -sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo +4) install terraform using script install_tf_in_shell.sh . -sudo yum -y install terraform +cd terraform-workshop/AWS/Labs + +. install_tf_in_shell + +******** AWS cloud shell does not preserve software install after restartrt. You have to execute install_tf_in_shell.sh every time you login to cloud shell. ************* -git clone https://github.com/imrannayer/terraform-workshop.git \ No newline at end of file diff --git a/Azure/LabSetup.txt b/Azure/LabSetup.txt index f17813f..65ac8cd 100644 --- a/Azure/LabSetup.txt +++ b/Azure/LabSetup.txt @@ -1,5 +1,9 @@ -use Azure cloud shell +1) use Azure cloud shell + +2) Clone code repository git clone https://github.com/imrannayer/terraform-workshop.git +3) Check Terraform version in cloud shell + terraform --version \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index cbcf829..bd089b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Extending the adopted spec, each change should have a link to its corresponding pull request appended. +## [2.3.0] +- Udpated LabSetup.txt for AWS, Azure and GCP + +## [2.2.0] +- added labs for data source + +## [2.1.0] +- Updated labs + ## [2.0.0] ### NEW FEATURES diff --git a/GCP/LabSetup.txt b/GCP/LabSetup.txt index 920c572..1ce3d65 100644 --- a/GCP/LabSetup.txt +++ b/GCP/LabSetup.txt @@ -1,5 +1,15 @@ -use cloud shell +1) use cloud shell + +2) Make Sure your project ID is set in cloud shell. Execute following command to check & set project ID in cloud shell. Replace MY_PROJECT_ID with your project ID + +gcloud config list project + +gcloud config set project + +3) Clone code repository git clone https://github.com/imrannayer/terraform-workshop.git +4) Check Terraform version in cloud shell + terraform --version \ No newline at end of file