GCP Lesson 73 of 98

GCP Cloud Adoption Framework: Lead Theme — Leadership & Governance, Mobilizing Teams, Cross-Functional Collaboration, and a Cloud Operating Model

In a nutshell

Every enterprise cloud programme eventually hits the same wall, and it is almost never a technical one. The VMs migrate fine; the pipelines run. What stalls the programme is the organization: nobody actually owns the platform, finance has no idea what it costs, security shows up two weeks before launch, and the whole thing quietly depends on one enthusiastic person who might change jobs next quarter. Lead is the Cloud Adoption Framework theme that measures exactly this — whether your people and your leadership are structured, mandated, and motivated to adopt the cloud well. Where the Learn theme asks “are our people skilled enough?”, Lead asks a different question: “does the organization have the mandate, the teams, and the operating model to actually move — and to keep moving after the champion leaves?”

A mental model that makes it click: Lead is the difference between a pickup game and a real football club. A pickup game can have talented players (skills — that is the Learn theme), but it has no owner funding it, no manager, no tactics everyone plays, and nobody accountable when it falls apart. A real club has an owner who funds and backs it (the executive sponsor), a coaching staff that sets the system the whole squad plays (the Cloud Center of Excellence and the operating model), specialists who train together instead of blaming each other across the white lines (cross-functional collaboration — reliability, security, and finance embedded in the team), and rules of the game that apply to everyone automatically (governance, encoded as guardrails rather than refereed play-by-play). Lead is how you turn a room full of good players into a club that can win a league — and, crucially, keep winning after the star striker transfers out.

Concretely, Lead has four moving parts, and this lesson takes each in turn: leadership and governance (a clear mandate plus enforceable guardrails), mobilizing teams (a CCoE and the platform-versus-product team split), cross-functional collaboration (shared accountability across dev, ops, security, and finance), and executive sponsorship with a cloud operating model (the durable system that makes all of it outlive any single champion). Like every CAF theme, each part is rated Tactical → Strategic → Transformational, and the entire point of the theme is to move up that scale on purpose rather than by luck.

Level: Advanced (with a beginner-friendly on-ramp) · Time: ~40 min

The Lead theme as an operating model — a named executive sponsor supplies the mandate and budget, leadership and governance encode guardrails on the Resource Manager hierarchy, a Cloud Center of Excellence mobilizes platform and product teams behind a paved road, SRE/DevSecOps/FinOps become shared accountability, and a target operating model plus a Cloud Business Council make it durable

One-sentence walkthrough: Read left → right — a named executive sponsor supplies the mandate and budget (1); leadership and governance encode the non-negotiables as guardrails that inherit down the Resource Manager hierarchy (2–3); a Cloud Center of Excellence mobilizes a platform team and product teams behind a self-service paved road (4); SRE, DevSecOps, and FinOps become shared accountability embedded in those teams (5); and a documented target operating model plus a standing Cloud Business Council institutionalize the whole thing so it survives re-orgs and departures (6) — maturing Lead from Tactical → Strategic → Transformational.

Prerequisites. This is part 3 of the Google Cloud Adoption Framework series and assumes you have met the framework’s shape — the four themes, the three maturity phases, and how gaps become funded epics. New to CAF? Read the CAF overview & maturity model first, then the previous part, the Learn theme, because skills gate everything Lead is about to build. It also helps to know GCP’s resource hierarchy — Organization → Folder → Project — and IAM basics, since governance in the Lead theme is built directly on top of them. No hands-on GCP access is required: this is a leadership, organization, and operating-model lesson, not a console lab.

After this lesson you’ll be able to:

Where this fits

The Google Cloud Adoption Framework is built on four themesLearn, Lead, Scale, and Secure — each assessed against three maturity phases: Tactical, Strategic, and Transformational. Together these form the Cloud Maturity Scale, and the framework turns your position on that scale into a concrete program of adoption expressed as epics (discrete, ownable bodies of work). Lead is the theme that asks a deceptively simple question: is the organization, and specifically its people and its leadership, structured and motivated to adopt the cloud? Where Learn measures the quality and scale of your skilling, Lead measures the mandate — the extent to which IT teams are backed by leadership to migrate to the cloud, and the degree to which those teams are themselves cross-functional, collaborative, and self-motivated. This article goes deep on the four sub-components that make up Lead: leadership and governance, mobilizing teams, cross-functional collaboration, and executive sponsorship with a cloud operating model.

Google Cloud Adoption Framework — animated overview

Leadership and governance

What it is

In the Lead theme, “leadership and governance” is the pairing of two things the framework treats as inseparable: a clear, top-down mandate to adopt the cloud, and a governance model that channels that mandate into enforceable guardrails without throttling delivery. Leadership sets direction and removes obstacles; governance encodes the non-negotiables — security, cost, compliance, residency — as policy that applies automatically as the estate grows. On Google Cloud, the substrate for that governance is concrete and architectural, not merely procedural: the Cloud Resource Manager hierarchy of Organization → folders → projects, on which IAM allow/deny policies and Organization Policy constraints are inherited from parent to child.

Why it matters

The Adoption Framework is explicit that maturity in Lead is the difference between cloud as a series of disconnected experiments and cloud as a strategic capability. At Tactical maturity, individual workloads exist but there is no coherent plan tying them together — wins are quick, but there is no provision for scale. The thing that closes that gap is leadership that has decided, publicly and with budget attached, plus governance that makes the right thing the easy thing. Without enforceable governance, every project re-litigates the same decisions (which region? which encryption? who can grant Owner?), drift accumulates, and the first audit or cost spike erases the credibility of the whole programme. Leadership without governance is enthusiasm; governance without leadership is a binder nobody enforces. Lead requires both.

How to do it well

Concrete artifacts, decisions, and GCP tools

Decision Artifact you produce GCP mechanism
Who has the mandate and budget Cloud charter signed by the executive sponsor — (org leadership)
How the estate is organized Resource hierarchy design (Org → folders → projects) Cloud Resource Manager
Which corporate rules are non-negotiable Policy statements mapped to constraints Organization Policy Service (e.g. gcp.resourceLocations, compute.vmExternalIpAccess, iam.disableServiceAccountKeyCreation)
Who can do what, where IAM role-binding model with least privilege Cloud IAM (predefined/custom roles, allow & deny policies)
How identities are governed centrally Group-based access via the corporate IdP Cloud Identity / Google Workspace + groups
How spend is bounded and visible Budgets, alerts, and showback structure Cloud Billing budgets & alerts, billing export to BigQuery
How we prove control to auditors Continuous compliance posture Security Command Center, Cloud Asset Inventory, Audit Logs

The single most consequential decision here is the resource hierarchy, because IAM and Organization Policy both inherit down it. Get the folder taxonomy right and governance becomes a property of where a project lives; get it wrong and you will be re-binding IAM project-by-project forever.

Worked example: a business risk becomes an enforced guardrail

The four bullets above are the theory; here is the discipline made concrete. Take one risk a leader genuinely cares about — “customer data must not leave the EU” — and walk it all the way down from a sentence in a boardroom to a control that enforces itself.

  1. Business risk (plain language). Customer PII processed by the customer-portal workloads must be stored and processed only in EU regions — a data-residency obligation the CISO and the regulator both care about.
  2. Policy statement. Every project under the portal folder may create resources only in EU locations.
  3. Control (an Organization Policy constraint). Bind the gcp.resourceLocations list constraint at that folder node so it inherits to every project beneath it — current and future:
# eu-residency.yaml — applied at the portal folder node
name: folders/FOLDER_ID/policies/gcp.resourceLocations
spec:
  rules:
  - values:
      allowedValues:
      - in:eu-locations
# Apply the constraint (it inherits to every project in the folder)
gcloud org-policies set-policy eu-residency.yaml

# Verify the *effective* policy on a child project before you trust it
gcloud org-policies describe gcp.resourceLocations \
  --project=PROJECT_ID --effective

Now a gcloud compute instances create targeting us-central1 under that folder fails at create time with a policy violation, while europe-west1 succeeds — and the guardrail scales automatically to every current and future project in that branch, with no review board in the loop. That is the entire thesis of “leadership and governance”: the leader names the risk, and governance makes the compliant path the only path, by construction. (in:eu-locations is a Google-maintained value group; pin a specific set like in:europe-west1-locations when you need to be exact.)

Mobilizing teams

What it is

“Mobilizing teams” is the operational counterpart to leadership: turning a mandate into people who are organized, funded, and motivated to deliver cloud outcomes. In the Lead theme this is fundamentally about a shift from project-based thinking to product-based ownership — from temporary teams that disband at go-live to durable, accountable teams that own a service through its life. The organizational pattern Google recommends for catalysing this is a Cloud Center of Excellence (CCoE): a small, senior, cross-functional team of cloud architects, security specialists, and platform engineers that centralizes governance, advocacy, and enablement so the rest of the organization can move faster.

Why it matters

The framework’s definition of Lead literally measures “the degree to which the teams themselves are cross-functional, collaborative, and self-motivated.” You cannot reach Strategic or Transformational maturity with a workforce that treats cloud as someone else’s project. Mobilization matters because the bottleneck in most enterprise cloud programmes is not technology — it is the absence of a team that owns the platform and an operating rhythm that lets product teams self-serve. A CCoE that is staffed but powerless becomes a ticket queue; a mandate with no team to execute it becomes a slide deck. Mobilizing teams is what makes the mandate move.

How to do it well

Concrete artifacts, decisions, and GCP tools

What you mobilize Artifact GCP / tooling
The enabling team CCoE charter, RACI, staffing plan — (org design)
The platform team’s product Landing zone + paved-road modules Terraform, Cloud Foundation Fabric / project-factory, Infrastructure Manager
Self-service onboarding Project-vending pipeline Infrastructure Manager / Cloud Build + Terraform, Service Catalog
Standardized golden paths Reference architectures, base images, CI templates Cloud Build, Artifact Registry, Cloud Deploy
Team-level visibility Per-team folders with scoped IAM and budgets Resource Manager, Cloud Billing, Cloud Monitoring (per-project)

The defining artifact is the CCoE charter — who is on it, what authority it holds, and crucially what it does not do. The defining capability is self-service project vending, because it is the proof that the platform team has productized governance instead of administering it by hand.

Cross-functional collaboration

What it is

Cross-functional collaboration is the explicit requirement, called out in the Lead theme, for shared accountability for business outcomes across the boundaries that normally silo an enterprise: development, operations, security, networking, finance, compliance, and the business itself. In practice it means embedding the disciplines that used to throw work over the wall — security (DevSecOps), operations (SRE), and cost (FinOps) — directly into the teams that build, and giving them a shared definition of success.

Why it matters

The framework’s hallmark of the Transformational phase is a culture of experimentation and innovation sponsored consistently across the C-suite. That culture is impossible when security is a late-stage gate, ops is a separate kingdom, and finance only sees the bill after the fact. Collaboration matters because the cost of a siloed handoff compounds: the security review that lands two weeks before launch, the production incident nobody owns, the budget overrun discovered at month-end. Shared accountability replaces sequential handoffs with concurrent ownership, which is the only way to combine cloud’s velocity with an enterprise’s risk posture.

How to do it well

Concrete artifacts, decisions, and GCP tools

Discipline Shared artifact GCP tooling
Reliability (SRE) SLOs, error budgets, on-call & incident model Cloud Monitoring SLOs, Error Reporting, Cloud Logging, on-call runbooks
Security (DevSecOps) Threat-modelled controls in the pipeline Security Command Center, Binary Authorization, Secret Manager, Artifact Analysis
Cost (FinOps) Per-team budgets, showback/chargeback model Cloud Billing export → BigQuery → Looker Studio, budget alerts, committed-use discounts
Access (shared) Group-to-role mapping (least privilege) Cloud Identity groups, IAM, Access Context Manager
Change (shared) Progressive-delivery release process Cloud Deploy, Cloud Build, IaC review gates

The cross-functional KPI set is where this becomes measurable:

KPI What it proves about collaboration Target direction
SLO attainment / error-budget burn Product and ops share a reliability goal Within budget
Lead time for change (DORA) Security and ops aren’t blocking delivery Trending down
Change-failure rate (DORA) Quality is shared, not bolted on Trending down
% spend covered by a budget with an owner Finance and engineering share cost accountability → 100%
Mean time to remediate SCC findings Security ownership is distributed, not central Trending down

Executive sponsorship and a cloud operating model

What it is

This sub-component is the apex of the Lead theme. Executive sponsorship is the active, visible, sustained backing of the cloud programme by senior leadership — and the framework is precise about what mature sponsorship looks like: at Transformational maturity, “sponsorship is comprehensive across the entire C-level to include marketing, finance, operations, HR, and more, and extends down to all levels of management.” It is not a single sign-off from the CIO; it is the whole executive layer setting the tone for a culture of experimentation. The cloud operating model is the durable system that sponsorship institutionalizes: how the platform team, product teams, the CCoE, and the governance body relate; who owns what; and how cloud practices are run enterprise-wide so the model outlives any individual project or sponsor.

Why it matters

Sponsorship is the variable that most strongly predicts whether a cloud programme stalls at Tactical or progresses. Money, mandate, and the authority to break ties all flow from it. But sponsorship is fragile and personal — re-orgs and departures can evaporate it overnight. The operating model matters because it is what converts a sponsor’s energy into a system that persists: explicit ownership, funding mechanisms, decision rights, and a governance cadence that keep cloud running whether or not any one champion is in the room. The framework’s whole arc — Tactical → Strategic → Transformational — is really the maturation of the operating model from “a few sponsored experiments” to “the default way the enterprise builds.”

How to do it well

Operating-model components and ownership

Operating-model component Owner Primary GCP mechanism
Strategy, funding, tie-breaks Executive sponsor + Cloud Business Council — (governance forum)
Org-level guardrails & policy Governance body / CCoE Organization Policy, IAM at org node, SCC
Landing zone & paved road Platform team Terraform / Infrastructure Manager, Cloud Foundation Fabric
Self-service onboarding Platform team Project factory, Service Catalog
Workload build & run Product teams (you build it, you run it) Full project-scoped autonomy within guardrails
Cost governance (FinOps) FinOps function + each team Billing export → BigQuery, budgets, CUDs
Reliability (SRE) Product + central SRE practice Cloud Monitoring SLOs, error budgets
Continuous compliance & audit Security + governance Security Command Center, Cloud Asset Inventory, Audit Logs

Maturing the operating model across the Cloud Maturity Scale

Aspect Tactical Strategic Transformational
Sponsorship One champion, ad-hoc budget CIO/CTO with a funded programme Whole C-suite + all management layers
Team model Project teams, disband at go-live Standing platform team + a CCoE forming Product teams + mature CCoE; build-it/run-it is the norm
Governance Manual, per-project Org-level policy guardrails, MVP enforced Continuous, automated, measured by score
Collaboration Siloed handoffs DevSecOps/SRE/FinOps emerging in teams Shared accountability is the culture
Outcome focus Lift-and-shift, cost of discrete systems Strategic workloads, scale provisioned Experimentation & innovation, enterprise-wide

Real-world enterprise scenario

Meridian Freight Group is a fictional logistics and supply-chain company: ~14,000 employees, ~₹9,800 crore in revenue, headquartered in Pune with operations across India, the EU, and the US. Their estate is a mix of on-prem SAP, a fleet-telematics platform, and a sprawl of “shadow” cloud projects created by individual teams with personal billing accounts. A Google Cloud maturity assessment scores them Tactical on Lead: real workloads exist, but there is no mandate, no central team, no governance, and finance has no idea what cloud actually costs. The board has approved a three-year goal to reach Strategic maturity. Here is how they apply each sub-component of Lead.

Leadership and governance. The CTO, Ananya Rao, secures a board-level mandate and becomes the executive sponsor with a dedicated three-year budget line. The first artifact is a one-page cloud charter signed by the CEO. The CCoE then designs the Resource Manager hierarchy: a single Organization resource backed by Cloud Identity, with top-level folders prod, nonprod, and shared, and second-level folders per business unit (fleet, sap, customer-portal, data-platform). At the org node they enforce Organization Policy constraints: gcp.resourceLocations restricted to in:eu-locations and in:asia-south1 to satisfy EU residency for customer data, compute.vmExternalIpAccess denied by default, and iam.disableServiceAccountKeyCreation enabled. IAM is group-based via Cloud Identity, with Owner removed from all human users above the project level. The shadow projects are migrated under the Organization and brought into the hierarchy within the first quarter.

Mobilizing teams. Meridian charters a 9-person CCoE (2 architects, 2 security, 3 platform engineers, 1 FinOps lead, 1 program manager) reporting to Ananya. The platform engineers build a landing zone using Cloud Foundation Fabric and a Terraform project-factory pipeline running on Cloud Build with state in a dedicated seed project. The headline win: a product team now requests a new environment through a pull request, and a compliant, fully-governed project lands in the correct folder — with budgets, baseline IAM, logging sinks, and VPC attachment — in under 30 minutes, versus the previous ~3-week ticket cycle. Three pilot product teams (fleet-telematics, customer-portal, data-platform) are stood up as standing, funded teams that own their services in production.

Cross-functional collaboration. Each pilot team embeds the three disciplines. SRE: the customer-portal team defines a 99.9% availability SLO in Cloud Monitoring with an explicit error budget; when the budget burns, feature work pauses by prior agreement between product and ops. DevSecOps: Binary Authorization is wired into Cloud Deploy so only attested images reach production, Security Command Center Premium routes findings to the owning team, and all secrets move to Secret Manager. FinOps: the FinOps lead stands up billing export to BigQuery with a Looker Studio dashboard per team and a budget+alert on every project. Within two quarters, 100% of projects have a budgeted owner, and engineers see their own spend daily.

Executive sponsorship and the operating model. Ananya chairs a monthly Cloud Business Council (sponsor, CCoE lead, platform lead, security lead, FinOps lead, plus the SAP and customer-portal product owners) that reviews a one-page executive scorecard and arbitrates org-policy exceptions. The CFO and the COO join the council within six months — sponsorship widening beyond IT, exactly as the Transformational phase describes. The target operating model is documented with a RACI: CCoE owns guardrails, platform owns the paved road, product teams own build-and-run, FinOps owns cost governance. The model is tied directly to the program of adoption, with each epic (e.g. “migrate fleet-telematics”, “stand up the EU-resident data platform”) assigned a named owner and funding.

Measurable outcome (12 months). A re-assessment moves Meridian from Tactical to Strategic on Lead. Concretely: shadow projects eliminated (from ~40 ungoverned projects to 0); new-environment provisioning down from ~3 weeks to under 30 minutes; 100% of cloud spend now under a budget with a named owner; cloud cost variance to forecast inside ±8%; DORA lead-time for the three pilot teams down ~60%; and a Security Command Center posture score that the council can now track as a trendline rather than discover at audit.

Deliverables & checklist

Common pitfalls

Going deeper

This section is for the reader who already gets the four sub-components and wants the internals, the sequencing logic, and the naming traps that separate a slide-deck understanding of Lead from an operating one.

Team topologies: the shapes a cloud org actually takes

“Mobilizing teams” is vague until you name the shapes. The vocabulary that maps cleanly onto the Lead theme comes from Team Topologies, and Google’s own guidance leans on it:

The failure mode to name out loud: a CCoE that behaves like a complicated-subsystem team you must route every request through — i.e. a gate. That is an enabling team that forgot to withdraw. The interaction modes matter too: an enabling team should use facilitating (coach, then leave) and X-as-a-Service (consume the paved road self-serve), not collaboration on every project forever — permanent collaboration is just a bottleneck wearing a friendlier name.

At tens of thousands of engineers, even a healthy central CCoE saturates. The Transformational shape is federated / hub-and-spoke: a small central platform team and CCoE own the paved roads and the standards; embedded “cloud champions” (a thin enabling layer) in each business unit run local enablement and design reviews against the central standard. The center measures paved-road adoption; the spokes measure local time-to-productivity.

Governance internals: how IAM and Org Policy actually resolve down the hierarchy

“Design the hierarchy first” is advice; here is why, mechanically — the part that trips up people who have only read the marketing:

Put together, these four facts are the real argument for the hierarchy-first rule: because policy flows down an immutable-ish inheritance shape, the topology you draw is your governance boundary. Draw it wrong and you spend forever fighting inheritance; draw it right and governance is simply a property of where a project lives.

Change management is the harder 80%

Lead is maybe 20% tooling and 80% behaviour change, and the framework’s phases are really a change-management curve. A useful lens is Kotter’s sequence, mapped onto CAF’s machinery: urgency and a guiding coalition come from the executive sponsor and the Cloud Business Council; short-term wins come from the CCoE shipping self-service vending that turns a three-week wait into thirty minutes (nothing converts skeptics like getting their environment today); and you anchor the change in the culture by making the new way the easy way — guardrails so the compliant path is also the fast path, and incentives that reward running a service well rather than heroically firefighting it.

The dominant failure mode is declaring the target operating model on a slide while leaving the incentives untouched: still funding projects (so teams still disband), still rewarding the lone hero who saves the launch (so nobody builds the boring paved road). If the reward system did not change, the operating model did not change — it was just announced.

The operating model as the durable artifact: funding and decision rights

The operating model earns its keep in two unglamorous places:

How Lead interlocks with Learn, Scale, and Secure

The four themes are not parallel silos; Lead is the one that unlocks the other three:

Naming and scope caveats (2026)

Practice challenges

Work these top to bottom — they escalate from “can you name the model” to “can you operate it.” Try each before opening the solution.

1. (Beginner) Name the parts. From memory, name the four sub-components of the Lead theme and the three maturity phases. Then, in one sentence each, describe what evidence would put an org at Tactical versus Transformational on Lead.

<details><summary>Solution</summary>

Sub-components: leadership & governance, mobilizing teams, cross-functional collaboration, executive sponsorship + the operating model. Phases: Tactical, Strategic, Transformational. Tactical Lead = one champion with ad-hoc budget, no central team, manual per-project governance, siloed handoffs. Transformational Lead = sponsorship across the whole C-suite and down through management, product teams with a mature CCoE, continuous automated governance, and shared accountability as the culture. Why: you cannot place an org on the maturity scale until you can name the axes and picture both ends. </details>

2. (Beginner) Sponsorship or sign-off? A CIO approves the cloud kickoff in a town hall, is thanked warmly, then delegates it entirely and moves on. Six weeks later a procurement blocker stalls the landing zone for a month. Was that real executive sponsorship? What was missing?

<details><summary>Solution</summary>

No — that was a sign-off, not sponsorship. Real sponsorship owns outcomes, not attendance: a budget line, the authority to break ties (like clearing that procurement blocker in days, not weeks), and a scorecard the sponsor is accountable to. What was missing: sustained ownership, tie-break authority, and a plan to widen sponsorship (CFO/COO) so one person isn’t a single point of failure. Why: active, owned sponsorship is the single variable that most predicts whether a programme escapes Tactical — a one-time blessing is the classic stall. </details>

3. (Intermediate) Design the governance backbone. You are setting up a new Organization for a company with prod and nonprod environments across three business units (fleet, portal, data). Sketch a folder taxonomy that lets you (a) enforce EU residency for portal only, and (b) apply a no-external-IP rule everywhere. Where do you attach each policy, and why there?

<details><summary>Solution</summary>

A two-level taxonomy — a common shape is a BU folder per unit, each containing prod/nonprod, plus a shared folder for host/logging projects:

Organization                         ← attach compute.vmExternalIpAccess (denyAll) HERE
├── fleet/        (prod, nonprod)
├── portal/       (prod, nonprod)     ← attach gcp.resourceLocations = in:eu-locations HERE
├── data/         (prod, nonprod)
└── shared/       (logging, networking host projects)

Attach no-external-IP at the Organization node so it inherits to every project everywhere; attach EU residency at the portal folder only, so it scopes to exactly those projects and nothing else. Why: the hierarchy is the governance boundary — you scope a policy by choosing the node you bind it to, which is precisely why you design the taxonomy before you write policy. </details>

4. (Intermediate) Risk → constraint. Your security lead’s stated risk: “service-account keys are our biggest leak vector; nobody should be able to create them.” Write the Organization Policy that enforces this org-wide, and give the one command to apply it.

<details><summary>Solution</summary>

The boolean constraint iam.disableServiceAccountKeyCreation, enforced at the org node:

# no-sa-keys.yaml
name: organizations/ORG_ID/policies/iam.disableServiceAccountKeyCreation
spec:
  rules:
  - enforce: true
gcloud org-policies set-policy no-sa-keys.yaml

Now any attempt to create a user-managed SA key under the Organization is denied, and teams move to keyless auth (Workload Identity Federation, attached service accounts) instead. Why: this is “policy as intent, then enforce” in one move — the leader names the risk, and a single inherited boolean constraint makes the risky action impossible by construction, org-wide. </details>

5. (Advanced) Charter a CCoE that won’t gatekeep. Write the three things a CCoE charter must contain to avoid becoming the ticket-queue bottleneck, and name the one thing it must explicitly not do.

<details><summary>Solution</summary>

Must contain: (1) Mandate + decision rights — what it mandates (resource hierarchy, IAM baseline, Org Policy, tagging standard) versus what it only advises (application architecture); (2) Its product is the paved road — self-service golden assets (project factory, Terraform modules, base images), not manual approvals; (3) Explicit non-goals + a self-service SLA, and it is measured on paved-road adoption %, not tickets closed. Must not do: be a manual approval gate on every new project or deploy — that recreates the shadow IT it exists to end. Why: a CCoE stood up as a central gate becomes a queue teams route around; charter it as an enabling team that makes the compliant path the fast path. </details>

6. (Advanced) The champion left. Your only executive sponsor takes another job; within a quarter the programme has stalled — budget disputes, no one arbitrating org-policy exceptions, product teams drifting. What in the operating model should have prevented this, and what do you do now?

<details><summary>Solution</summary>

The operating model should have made sponsorship a system, not a person: (1) a documented target operating model with a RACI, so ownership of landing zone / security / cost / delivery didn’t live in one head; (2) a standing Cloud Business Council (multiple leaders) as a guiding coalition, so tie-breaks and exceptions had a forum that survives one departure; (3) widened sponsorship to the CFO/COO before the champion left, so there was no single point of failure. Now: convene the Council, appoint an interim accountable sponsor from it, and use the executive scorecard to re-secure a funded mandate. Why: the entire reason to codify an operating model is that sponsorship is fragile and personal — the model is what makes cloud outlive any one champion. </details>

Common beginner mistakes

These are conceptual misreadings of the Lead theme (distinct from the organizational anti-patterns in Common pitfalls above) — the misconception, why it’s wrong, and the right mental model.

Glossary

What’s next

With the Lead theme establishing the mandate, the teams, and the operating model, the next part of the Google Cloud Adoption Framework series turns to the Scale theme — productizing the platform and using cloud-native and automation practices to grow adoption without growing toil.

GCPCloud Adoption FrameworkLead ThemeEnterprise
Need this built for real?

Vinod is a Senior Cloud Architect (22+ yrs) — available for Azure / AWS / GCP architecture, landing zones, and migrations.

Work with me

Comments