HashiCorp Terraform Associate Certification Study Guide
Introduction The HashiCorp Terraform Associate certification validates your knowledge of infrastructure as code concepts and Terraform skills. This …
Introduction The HashiCorp Terraform Associate certification validates your knowledge of infrastructure as code concepts and Terraform skills. This …
Introduction Not everything in your infrastructure is managed by Terraform. Legacy resources, manually created configurations, resources managed by …
Introduction In August 2023, HashiCorp announced a significant change: Terraform would move from the Mozilla Public License (MPL 2.0) to the Business …
Introduction When managing infrastructure as code (IaC) with Terraform, encountering errors is a part of the development and deployment process. One …
Introduction When terraform plan or terraform apply fails with a cryptic error, you need debug output. Terraform’s built-in debugging system …
Introduction You have cloud resources running in production that weren’t created with Terraform. Maybe they were created manually in the AWS …
Quick Answer # Modern way (Terraform 1.0+) — recommended terraform apply -replace="aws_instance.web" # Legacy way (deprecated but still works) …
Quick Answer Pin Terraform core with required_version and providers with required_providers version constraints. Use ~> (pessimistic) for most …
Quick Reference terraform init # Download providers and initialize terraform fmt # Format code terraform validate # Check syntax terraform plan # …
Introduction When you need to create multiple similar resources in Terraform — three subnets, five EC2 instances, or a security group per environment …
Introduction Terraform lifecycle rules control what happens when a resource needs to be created, updated, or destroyed. They’re essential for …
Quick Answer Store Terraform state in an encrypted, versioned S3 bucket with DynamoDB locking. This enables team collaboration, prevents state …
LEARN BY DOING
Interactive, project-based learning — copy, paste, and understand