techaicloudpolicy
Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy.
用 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 reusable GitHub composite actions with secure Bash and deterministic behavior.
Safely update structured JSON/YAML registry files (users, groups, teams, repositories, or policy maps).
Create or modify Python application components using DDD boundaries, early returns, and deterministic pytest coverage.
| name | TechAICloudPolicy |
| description | Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy. |
src/scp/policies/ or equivalent organization-policy folder.src/**/policy_rules/ (rule JSON) and policy definition .tf in matching module.src/**/policy* with assignment split by scope.{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "DenyUnapprovedRegions",
"Effect": "Deny",
"Action": "*",
"Resource": "*",
"Condition": {
"StringNotEquals": {
"aws:RequestedRegion": ["eu-south-1", "eu-west-1"]
}
}
}
]
}
{
"if": {
"field": "type",
"equals": "Microsoft.Network/publicIPAddresses"
},
"then": {
"effect": "deny"
}
}
resource "google_org_policy_policy" "disable_sa_key_creation" {
name = "organizations/${var.org_id}/policies/iam.disableServiceAccountKeyCreation"
parent = "organizations/${var.org_id}"
spec {
rules {
enforce = true
}
}
}