In Google Cloud Platform (GCP), IAM permissions are inherited downward through the resource hierarchy structure. How should an architect sequence the GCP resource hierarchy levels in order of policy inheritance, starting from the highest level (broadest policy scope) down to the lowest level (most narrow policy scope)?
- 1Organization node
- 2Folder node
- 3Project node
- 4Individual Resource (e.g., Compute Engine VM or Cloud Storage Bucket)
Answer
The correct sequence of the GCP resource hierarchy from broadest scope to most granular scope is: Organization node, Folder node, Project node, and Individual Resource.
In Google Cloud Platform, IAM policies are inherited transitively from parent to child. The resource hierarchy flows downwards starting from the Organization (root node), through Folders (grouping containers), to Projects (service boundaries), and finally to Individual Resources (leaf elements).
Step-by-Step Solution
Key Concept
GCP IAM Resource Hierarchy Policy Inheritance
Estimated Time:45s