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 ページを確認してインストールできます。
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 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
}
}
}