techaiterraformfeature
Add or modify Terraform resources, variables, outputs, and data sources.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Add or modify Terraform resources, variables, outputs, and data sources.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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