GCP_PARENT_ORGANIZATION
Summary
Description
Organization ←── GCP_PARENT_ORGANIZATION ─── Folder (top-level)
Organization ←── GCP_PARENT_ORGANIZATION ─── Project (top-level, no folder)Identification
gcloud CLI
# List all top-level folders (direct children of the org)
ORG_ID=$(gcloud organizations list --format="value(name)" | head -1)
gcloud resource-manager folders list --organization=$ORG_ID \
--format="table(name, displayName, createTime)"
# List all top-level projects (directly under the org, not in any folder)
gcloud projects list --filter="parent.type=organization AND parent.id=$(echo $ORG_ID | cut -d/ -f2)" \
--format="table(projectId, name, projectNumber)"
# Get organization-level IAM bindings (highest blast radius)
gcloud organizations get-iam-policy $ORG_ID --format=json | \
jq '.bindings[] | {role: .role, members: .members}'GCP Console
Exploitation
Mitigation
Detection
Log Type
Method
Key Fields
References
Last updated
Was this helpful?