Hey there, Gurus! Welcome to the lab! In this lab, you will migrate your local Terraform state to Terraform Cloud for better collaboration between you and your trusty team. You will create and configure a Terraform Cloud workspace, where you will store your state for your EC2 instance remotely. Then, you will add a backend configuration to your Terraform configuration file and apply the updated configuration.
Learning Objectives
Successfully complete this lab by achieving the following learning objectives:
- Set Up the Environment
1) In the terminal, once logged into your instance, change to the
lab-migrate-state
directory.2) Apply the Terraform configuration.
3) In the AWS Management Console, navigate to the cloud_user in IAM and generate your Access key ID and Secret access key values.
4) Copy or download your key to use during the Terraform Cloud setup.
- Set Up Your Terraform Cloud Workspace
1) Navigate to Terraform Cloud at https://app.terraform.io/session and create a free account (or log in if you have an existing account).
2) Create an organization named ACG-Terraform-Labs.
3) Create a workspace named labs-migrate-state using the CLI-driven workflowoption.
4) Navigate to the Variables tab and add two environment variables: one named AWS_ACCESS_KEY_ID with a value of your Access key ID and one named AWS_SECRET_ACCESS_KEY with a value of your Secret access key.
5) Navigate to User Settings and then Tokens, and create an API token called terraform_login.
6) Copy your API token.
- Add the Backend Configuration
1) Log in to Terraform Cloud with the API token.
2) Add the backend block provided to the configuration file.
3) Initialize your working directory.
4) Delete your
terraform.tfstate
file.- Apply the Updated Configuration and Confirm the State Was Saved to Terraform Cloud
1) Apply your updated configuration.
2) Confirm your state is saved to Terraform Cloud.