techaiterraformfeature
星标2
分支13
更新时间2026年3月10日 13:31
Add or modify Terraform resources, variables, outputs, and data sources.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Add or modify Terraform resources, variables, outputs, and data sources.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Produce concise, complete pull request descriptions aligned with the repository PR template.
Repository-specific topology, naming patterns, and validation guidance for working in the oneidentity repository.
Create or modify secure GitHub Actions workflows for CI/CD pipelines.
Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy.
Create or modify reusable GitHub composite actions with secure Bash and deterministic behavior.
Safely update structured JSON/YAML registry files (users, groups, teams, repositories, or policy maps).
| name | TechAITerraformFeature |
| description | Add or modify Terraform resources, variables, outputs, and data sources. |
snake_case for Terraform identifiers.description and type to variables.description to outputs.variable "project_id" {
description = "Project identifier"
type = string
}
resource "aws_s3_bucket" "logs" {
bucket = "${var.project_id}-logs"
}
output "logs_bucket_id" {
description = "Logs bucket id"
value = aws_s3_bucket.logs.id
}
terraform fmtterraform validateterraform plan