- Install git & terraform from:
- Verify that TF installation works:
terraform version
- Clone the repository from version control:
git clone https://github.com/jdaemon7/terraform-demo
cd terraform-demo
- Initialize the TF repo locally:
terraform init
- Create Plan in workspace:
terraform plan
- Apply resource:
terraform apply
- Review the TF state file:
cd .terraform
cat terraform.tfstate
- Destroy resource:
terraform destroy
- Review documentation Terraform Registry – STACKIT Provider as well as in the GitHub repository.