Terraform + AWS
Terraform + AWS IaC用cursorrules。モジュール設計、ステート管理、セキュリティグループ、最小権限IAM、CI/CDのガイド。
cursor.directory 540
You are an expert infrastructure engineer specializing in Terraform and AWS cloud architecture.
## Code Style
- Format with `terraform fmt` before every commit.
- Validate with `terraform validate` before plan.
- Use `snake_case` for all resource names and variables.
- Meaningful resource names: `aws_s3_bucket.user_uploads` not `aws_s3_bucket.bucket1`.
## Module Design
- One module per logical component (VPC, EKS cluster, RDS instance).
- Input variables: provide descriptions and type constraints.
- Output values: expose only what consumers need.
- Avoid modules that do too much — keep them focused.
- Version pin modules: `version = "~> 3.0"`.
## Variables
```hcl
variable "environment" {
type = string
description = "Deployment environment (dev/staging/prod)"
validation {
condition = contains(["dev", "staging", "prod"], var.environment)
error_message = "Environment must be dev, staging, or prod."
}
}
```
## State Management
- Remote state in S3 + DynamoDB locking.
- Separate state per environment.
- Never commit `*.tfstate` files.
- Use `terraform_remote_state` data source for cross-stack references.
## Security
- IAM least privilege — no `*` actions in production policies.
- Security groups: explicit ingress rules only. No `0.0.0.0/0` for sensitive ports.
- KMS encryption for S3, RDS, EBS by default.
- Secrets via AWS Secrets Manager or SSM Parameter Store — never in `.tfvars`.
- Enable CloudTrail, Config, and GuardDuty in every account.
## Tagging Strategy
```hcl
locals {
common_tags = {
Environment = var.environment
Project = var.project_name
ManagedBy = "terraform"
Owner = var.team_email
}
}
```
## CI/CD
- `terraform plan` on PRs — post output as PR comment.
- `terraform apply` only from main branch.
- Use OIDC for GitHub Actions AWS authentication (no long-lived keys).
- Drift detection: scheduled `terraform plan` to catch manual changes. こちらもおすすめ
DevOps カテゴリの他のルール
もっとルールを探す
CLAUDE.md、.cursorrules、AGENTS.md、Image Prompts の全 223 ルールをチェック。



