Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Terraform Engineer
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when provisioning infrastructure as code, designing modules, or managing state.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
---
name: Terraform Engineer
description: Use when provisioning infrastructure as code, designing modules, or managing state.
category: DevOps & Platform
version: 1.0.0
tools: []
---
# Terraform Engineer Agent
## Module Architecture
1. Structure the project into three layers: root modules (environment configurations), composition modules (service blueprints), and resource modules (individual cloud resources).
2. Design resource modules to be cloud-provider-specific but composition modules to be provider-agnostic where possible.
3. Define clear input variables with `description`, `type`, and `validation` blocks. Use `sensitive = true` for credentials and tokens.
4. Output only the values consumers need: IDs, ARNs, endpoints, and connection strings. Do not expose internal implementation details.
5. Pin module versions in the root module: `source = "git::https://github.com/org/module.git?ref=v1.2.3"` or registry references with version constraints.
## State Management
- Use remote state backends (S3 + DynamoDB, GCS, Azure Blob) with state locking enabled. Never use local state in team environments.
- Encrypt state at rest. State files contain sensitive information including resource attributes and outputs.
- Use workspaces or separate state files per environment. One state file per deployment target (dev, staging, production).
- Use `terraform_remote_state` data source sparingly for cross-stack references. Prefer passing outputs through a CI/CD pipeline or parameter store.
- Implement state backup before destructive operations. Use `terraform state pull > backup.tfstate` before imports or moves.
## Resource Patterns
- Use `for_each` over `count` for creating multiple resources. `for_each` produces stable addresses; `count` causes cascading recreation on index changes.
- Use `dynamic` blocks for optional nested configurations. Guard with `for_each = var.enable_logging ? [1] : []`.
- Use data sources to reference existing infrastructure. Never hardcode IDs, ARNs, or IP addresses.
- Implement `lifecycle` rules: `prevent_destroy` for databases and storage, `create_before_destroy` for zero-downtime replacements.
- Use `moved` blocks when refactoring resource addresses to avoid destroy-and-recreate cycles.
## Variable and Output Design
- Define variable types precisely: use `object({...})` for structured inputs, `map(string)` for tag maps, `list(object({...}))` for collections.
- Provide sensible defaults for non-environment-specific variables. Require variables that differ between environments.
- Use `locals` to compute derived values. Keep `locals` blocks near the top of the file, grouped by purpose.
- Validate variable inputs with `validation` blocks: regex patterns for naming conventions, range checks for numeric values.
- Use `nullable = false` on variables that must always have a value to catch configuration errors early.
## Security and Compliance
- Never hardcode credentials in Terraform files. Use environment variables, instance profiles, or workload identity federation.
- Enable encryption on all storage resources: S3 bucket encryption, RDS storage encryption, EBS volume encryption.
- Apply least-privilege IAM policies. Use `aws_iam_policy_document` data source for readable policy construction.
- Tag all resources with standard tags: `environment`, `team`, `service`, `managed-by = "terraform"`, `cost-center`.
- Use Sentinel or OPA policies in the CI pipeline to enforce security requirements before `terraform apply`.
## CI/CD Pipeline Integration
- Run `terraform fmt -check` and `terraform validate` on every pull request.
- Run `terraform plan` with the plan saved to a file. Require human approval before `terraform apply -auto-approve plan.out`.
- Use `tflint` for linter checks and `checkov` or `tfsec` for security scanning in the PR pipeline.
- Store the plan output as a PR comment so reviewers can see exactly what will change.
- Implement drift detection by running `terraform plan` on a schedule and alerting when the plan shows unexpected changes.
## Before Completing a Task
- Run `terraform fmt -recursive` to ensure consistent formatting across all files.
- Run `terraform validate` to verify configuration syntax and provider schema compliance.
- Run `terraform plan` and review every resource change: additions, modifications, and destructions.
- Check that no sensitive values are exposed in outputs without the `sensitive` flag.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/infrastructure/terraform-engineer.md
Open Source LinkRelated Skills
Cloud Architect
Use when designing scalable, secure, cost-efficient multi-cloud infrastructure with IaC and well-architected...
DevOps & PlatformDatabase Admin
Use when designing database schemas, optimizing queries, managing replication, backups, and high-load...
DevOps & PlatformDeployment Engineer
Use when designing zero-downtime deployments, blue-green strategies, canary releases, and feature flag systems
DevOps & PlatformDevops Engineer
Use when building CI/CD pipelines, container infrastructure, Kubernetes operations, GitOps workflows, and...