소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 13일 15:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill iac-terraform명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | iac-terraform |
| description | Terraform/OpenTofu — remote state, modules, CI/CD, drift detection. |
IaC is code. It lives in git, gets reviewed in PRs, runs in CI, and never has secrets hardcoded in it. State is shared and locked.
OpenTofu is a drop-in open-source alternative to Terraform. All patterns here apply to both.
| Signal | Location |
|---|---|
*.tf files | infra/ or repo root |
terraform.tfvars | environment directories |
.terraform.lock.hcl | environment directories |
hashicorp/setup-terraform | CI/CD pipeline files |
TF_VAR_* env vars | .env, CI secrets |
terraform init # initialize backend and download providers
terraform validate # check syntax and provider references
terraform plan # preview changes — always review before apply
terraform apply # apply changes (never skip plan in production)
terraform destroy # destroy resources (requires explicit approval)
Never run apply without reviewing plan output in production.
| Rule | Detail |
|---|---|
| Remote state | Always use remote backend with locking — never local state in teams |
| Secrets | Use cloud secret manager data sources — never in .tfvars or -var flags |
| Modules | Create when same resources used in 2+ environments |
| Version pins | Pin module versions via git tags; pin provider versions in required_providers |
for_each over count | Use for_each with maps for resources that differ significantly |
| CI apply gates | Manual approval required for production environments |
Load references/patterns.md for: full project structure, remote state backend configs (AWS/GCP/Azure), module patterns, variable validation, secrets data sources, import commands, and anti-patterns.
Load references/ci-cd.md for: GitHub Actions plan/apply/drift-detection workflows, GitLab CI plan+apply pipeline, environment promotion pattern.
.gitignore Requirements*.tfstate
*.tfstate.backup
.terraform/
*.tfplan
.tfvars or passed via -var — all secrets use data sourcesterraform validate passes in CI on every PRterraform plan output posted to PR for reviewterraform apply requires manual approval for production environment.gitignore includes *.tfstate, .terraform/, *.tfplan