Other Certifications · Google Cloud

Google Associate Cloud Engineer

Before anyone can practice SRE on Google Cloud, someone has to be able to actually operate Google Cloud: stand up a project without leaving the billing account wide open, get a workload running on the right compute service, wire up basic monitoring, and not lock an entire team out of a resource with a badly scoped IAM binding. The Google Associate Cloud Engineer (commonly shortened to ACE) is Google's entry-level, technical credential for exactly that — deploying, monitoring, and maintaining GCP resources — and it's usually the first Google Cloud certification an SRE ends up holding, often well before the Professional Cloud DevOps Engineer this course's certifications hub already covers in depth. This page covers what the ACE actually tests, how it relates to that Professional-tier exam and to the SRE discipline this course teaches, the official domains, and who should bother sitting it.

☺ Explain it like I'm 10

Imagine two driving tests. The first one checks that you can start the car, read the dashboard, park it, signal properly, and not stall at a junction — nothing about fleet logistics or defensive-driving tactics, just: can you safely operate this one vehicle, today? The second, harder test checks whether you can run an entire delivery fleet reliably — maintenance schedules, a plan for what happens when a truck breaks down at 2am, a system for catching problems before a customer does. The Google Associate Cloud Engineer is the first test, for Google Cloud: can you create a project, deploy a VM or a GKE cluster, set up a Cloud Storage bucket, wire up a basic alert, and get the IAM permissions right without an incident? Pass that, and the second test — the Professional Cloud DevOps Engineer, which tests the fleet-reliability skills — finally has solid ground to stand on.

🦫🦉Your hosts for this topic: Benny the Beaver & Professor Owl — Benny's spent plenty of late nights clicking (and gcloud-ing) through exactly this material building things by hand before automating them; Owl is here to place the exam correctly on the ladder relative to what this course's own certifications page already covers.

What the ACE actually is, and who it's for

☺ Like you're 10: It's a closed-book, multiple-choice test about running Google Cloud day to day — no live console, no terminal, just scenarios and the best answer among four or five.

The Google Associate Cloud Engineer is Google Cloud's own associate-tier, technical certification, aimed at people who deploy and maintain workloads and infrastructure on GCP. Unlike the CKA, it's a knowledge-based exam: multiple-choice and multiple-select questions, delivered proctored — either at a physical testing center or online with a remote proctor. There's no live cluster or live project to build or break during the exam itself; you're reasoning through a described scenario and picking the option Google considers correct, not typing gcloud commands against a real environment on the clock.

It sits deliberately at the "can you operate this" altitude, not the "should this exist" altitude. It doesn't ask you to design a multi-region disaster-recovery architecture from scratch — that's Professional Cloud Architect territory — and it doesn't ask you to build a CI/CD pipeline or apply SRE practice formally — that's the Professional Cloud DevOps Engineer this course already covers. The ACE asks something narrower and more mechanical: given a project that mostly already exists, can you set it up correctly, deploy the right resource for the job, keep it running, and secure access to it.

◆ Key idea

The ACE tests operational fluency across the GCP console and CLI, not reliability practice and not architectural design. Passing it proves you can find your way around Compute Engine, GKE, Cloud Storage, Cloud SQL, VPCs, IAM, and Cloud Monitoring without getting lost — it says nothing about SLOs, error budgets, blameless postmortems, or how much reliability a given design can actually promise. Those live entirely on the SRE-practice side of the line this course teaches.

Why this is usually the first Google Cloud credential an SRE holds

☺ Like you're 10: This one teaches you to safely drive the car; the Professional exam teaches you to run the whole reliability program for the fleet. Most people need to know how to drive first.

This course's certifications hub already covers the Professional Cloud DevOps Engineer in depth — the exam whose domains include bootstrapping a Google Cloud organization, building CI/CD pipelines, applying SRE practices to a service, and implementing service monitoring strategies. Every one of those Professional-tier domains quietly assumes you already have ACE-level fluency underneath it. You can't sensibly "bootstrap a Google Cloud organization" if you've never created a project or assigned an IAM role by hand; you can't "implement service monitoring strategies" if Cloud Monitoring and Cloud Logging are unfamiliar tools rather than ones you've already used to watch a real workload.

That's the relationship this page is built around: the ACE is the operational bedrock, and the Professional Cloud DevOps Engineer is what gets built on top of it. Sitting the ACE first means the Professional exam's SRE-practice and monitoring-strategy domains read as "the deeper version of something I already know," rather than as unfamiliar console screens on top of unfamiliar ideas at the same time.

ACE (this page)Professional Cloud DevOps Engineer
QuestionCan you deploy, operate, and maintain resources on GCP?Can you build the delivery pipeline and apply SRE practice on top of them?
ScopeOne project, one workload at a time — the mechanics of running itAn organization's pipelines, service monitoring strategy, and SRE practice across services
FormatKnowledge-based, multiple choice/selectKnowledge-based, including scenario-driven case studies
Tests SRE practice directly?No — operations only, no SLOs or error budgetsYes — one domain is explicitly "applying site reliability engineering practices to a service"
Typical orderUsually taken firstUsually taken second, once ACE fundamentals are second nature

Neither exam substitutes for the other, and the two are complementary rather than redundant. See the certifications hub for the full comparison against every credential this course tracks, including the Professional Cloud DevOps Engineer's own domain breakdown and logistics.

The official domains

☺ Like you're 10: Five topics, roughly in the order you'd actually do them — set the environment up, plan what to build, build it, keep it running, and lock it down.

Google's own Associate Cloud Engineer exam guide publishes five domains. Unlike AWS's associate-tier exams, Google doesn't publish explicit percentage weights for this exam — the guide lists domains and their competencies without a scored breakdown, so treat the order below as the exam guide's own structure, not a percentage you can budget study time against. In practice, the deploying-and-implementing and ensuring-successful-operation domains carry the most exam real estate simply because they cover the most services.

Setting up a cloud solution environment

Planning and configuring a cloud solution

Deploying and implementing a cloud solution

Ensuring successful operation of a cloud solution

Configuring access and security

What you actually need to know: the SRE-relevant landmarks

☺ Like you're 10: Here's the real substance behind those bullet points — the commands and choices that show up again on the exam, and again in a real on-call rotation.

Projects, IAM, and the resource hierarchy

Everything in GCP hangs off a resource hierarchy — organization, then folders, then projects, then the resources themselves — and IAM policies inherit downward through it. Getting this wrong is the single most common source of both exam questions and real production incidents: grant a role at the organization level that should have been scoped to one project, and every project underneath silently inherits it. The exam expects you to know predefined roles (broad, service-specific, like roles/compute.admin) versus custom roles (a hand-picked set of permissions) versus the old, dangerous basic roles (Owner, Editor, Viewer, which grant far more than most workloads need).

# Project setup and least-privilege IAM — the exam's favorite opening move
gcloud projects create ace-demo-2026 --organization=123456789012
gcloud config set project ace-demo-2026
gcloud billing projects link ace-demo-2026 --billing-account=012345-6789AB-CDEF01

# grant a predefined role scoped to ONE project, not the organization
gcloud projects add-iam-policy-binding ace-demo-2026 \
  --member="user:jane@example.com" \
  --role="roles/compute.instanceAdmin.v1"

# service accounts do the work workloads shouldn't do with a human's credentials
gcloud iam service-accounts create ace-deployer \
  --display-name="ACE deploy service account"
gcloud projects add-iam-policy-binding ace-demo-2026 \
  --member="serviceAccount:ace-deployer@ace-demo-2026.iam.gserviceaccount.com" \
  --role="roles/storage.objectAdmin"

Choosing the right compute service, not just the familiar one

A recurring exam shape presents a workload and asks which compute product fits it best, and the "obvious" answer — Compute Engine, because it's the one everyone learns first — is often wrong. A stateless HTTP service that scales to zero between requests points at Cloud Run; a short-lived event handler points at Cloud Functions; a workload that genuinely needs full control over the OS, custom kernel modules, or licensed software points at Compute Engine; anything needing container orchestration across many services points at GKE. Within Compute Engine itself, a Managed Instance Group with autoscaling is the difference between a single VM that pages someone when it dies and a self-healing fleet that replaces an unhealthy instance without anyone noticing.

# instance template + MIG with autoscaling — the ACE's version of "don't run one VM alone"
gcloud compute instance-templates create web-template \
  --machine-type=e2-medium \
  --image-family=debian-12 \
  --image-project=debian-cloud

gcloud compute instance-groups managed create web-mig \
  --base-instance-name=web \
  --template=web-template \
  --size=2 \
  --zone=us-central1-a

gcloud compute instance-groups managed set-autoscaling web-mig \
  --zone=us-central1-a \
  --max-num-replicas=6 \
  --target-cpu-utilization=0.6

# GKE: the container-orchestration answer when a MIG isn't enough
gcloud container clusters create-auto ace-cluster --region=us-central1
kubectl create deployment web --image=gcr.io/ace-demo-2026/web:latest
kubectl expose deployment web --type=LoadBalancer --port=80 --target-port=8080

Storage and databases, matched to the shape of the data

The exam quietly rules out the "popular" answer through a single detail in the scenario, the same way AWS's associate exams do. Relational data with transactions and joins points at Cloud SQL; that same relational shape at global scale with strong consistency points at Cloud Spanner instead; a flexible document model for a mobile or web app points at Firestore; wide-column data at massive throughput and low latency — the classic time-series or IoT shape — points at Bigtable; analytical queries over huge, mostly-append-only datasets point at BigQuery. Cloud Storage's own storage classes follow a similar logic — Standard, Nearline, Coldline, and Archive trade retrieval speed and minimum-storage-duration commitments against cost, and a lifecycle rule that ages objects down that ladder automatically is usually the answer an exam scenario about "reducing storage cost" is fishing for.

Monitoring and logging: proving the resource is actually healthy

The "ensuring successful operation" domain is where the ACE gets closest to this course's own territory, and it's worth taking seriously rather than skimming. Cloud Monitoring dashboards and alerting policies, Cloud Logging's log-based metrics and log sinks, and uptime checks against a public endpoint are the raw primitives — the ACE only asks whether you can configure them, not whether you can turn them into a defensible SLO or a paging policy that doesn't burn out whoever's on call. Monitoring and observability covers that next layer directly, and incident management and on-call covers what happens once one of these alerts actually fires in production rather than in a scenario question.

ACE operational fluency Projects & IAM Compute Engine & GKE Storage, databases & monitoring basics fundamentals in place Professional Cloud DevOps Engineer on this course's certifications hub CI/CD pipelines SRE practices applied to a service Service monitoring strategy the SRE discipline this course teaches spans underneath both

Exam logistics — verify before you book

☺ Like you're 10: Here's the shape of the test as Google generally publishes it — but prices and formats have moved before, so check Google's own page before you pay.

The figures below are what Google Cloud publishes on its own certification page and what candidates consistently report. Treat this as a planning snapshot, not a guarantee — Google revises certification logistics without much advance notice.

ItemWhat's generally published
FormatMultiple choice and multiple select, closed-book — no live console, no terminal
DeliveryOnsite at a testing center, or online with a remote proctor, via Google's exam-delivery partner
Question countAround 50 questions — Google doesn't fix a single published count for every sitting
Duration2 hours
Passing scoreNot published by Google — result is pass/fail only, with no scaled score shown
PriceAround USD $125 list; regional pricing varies
Validity3 years from the date you pass
PrerequisitesNone formally required — Google recommends 6+ months of hands-on GCP experience
Permitted resourcesNone — closed-book, no allowlisted documentation, unlike the CKA's permitted-docs model
⚠ Verify this before you book

Price, question count, delivery method, and prerequisites all move without much announcement. This site is independent and unofficial. Confirm current details on Google Cloud's own Associate Cloud Engineer certification page, and read the official exam guide PDF linked from that page — it's the authoritative source on domains and in-scope services, which Google revises periodically.

Who should sit it — and who should skip it

☺ Like you're 10: If GCP tickets keep landing on your desk and you keep reaching for a search engine, that's the signal. If you already operate GCP daily, spend the money on the next rung instead.

Sit it if you're new to Google Cloud specifically — you might already be a strong SRE on another platform, or new to the discipline entirely, but either way you don't yet have working muscle memory for GCP's console and CLI. The ACE closes exactly that gap efficiently, and for many employers it also doubles as a hiring signal independent of what it personally teaches you.

Skip it, or at least deprioritize it, if any of these describe you. You already operate GCP projects daily and would be studying material you use every week — go straight to the Professional Cloud DevOps Engineer instead. You work primarily on a different cloud — this course also profiles AWS Solutions Architect Associate and Azure Administrator Associate (AZ-104), the comparable rungs on those platforms. Or your actual gap is SRE practice itself rather than console fluency — the vendor-neutral SRE Foundation or this course's own SRE Practitioner profile teaches the practice with no cloud console attached at all.

Where it sits in the ladder, and what to do next

☺ Like you're 10: It's the entry technical rung. There's a non-technical badge below it and harder Professional badges above it.

Google's certification portfolio is a floor plan, not a straight line. Cloud Digital Leader sits below the ACE as the foundational, non-technical credential — no hands-on skills tested, just cloud concepts and business value, aimed at people who work alongside technical teams rather than building anything themselves. Above the ACE sit Google's Professional-tier exams, each looking at GCP from a different chair: Professional Cloud Architect for design-time decisions across the whole platform, and this course's own Professional Cloud DevOps Engineer for CI/CD and SRE practice specifically — the natural next stop once this page's fundamentals are solid. Google also publishes Professional-tier exams for security, networking, data, and machine learning that sit at the same altitude but off to the side, worth considering only if that's the specific gap you're closing.

If your platform runs on a different cloud, or you want the equivalent credential there for comparison, this course also profiles AWS Solutions Architect Associate and Azure Administrator Associate (AZ-104) — both sit at a comparable associate altitude on their respective clouds, though none of the three map their domains onto each other one for one. For infrastructure certifications that aren't cloud-specific at all, CKA and HashiCorp Terraform Associate cover the substrate and the provisioning layer respectively, and pair naturally with whichever cloud credential you choose. Full comparisons across every certification this course tracks live on the certifications hub.

How to prepare using this site

☺ Like you're 10: Here's the map from each exam domain to the exact pages here that teach the underlying idea, so you're not starting from zero.

This course teaches SRE as a discipline rather than as a GCP certification study guide, so it runs deeper than the ACE on error budgets, incident response, and postmortems, and lighter on pure console mechanics — creating a project, wiring up a VPC by hand — which is best learned directly in the GCP console and Google's own documentation, exactly where the exam itself sends you. Everything below is genuine ACE-adjacent material already on this site.

ACE domainStudy here
Setting up a cloud solution environmentSRE team topologies · Organizational impact of SRE for how project and org structure maps onto team ownership
Planning and configuring a cloud solutionCapacity planning & performance · Reliability economics
Deploying and implementing a cloud solutionKubernetes reliability patterns · Toil & automation for treating deployment as reviewed code, not manual clicks
Ensuring successful operation of a cloud solutionMonitoring & observability · Incident management & on-call
Configuring access and securitySecurity's overlap with reliability
Speed & recallGlossary · Flashcards
🦫 Benny's workshop · 30 min

Create a throwaway GCP project. Build the smallest complete loop the ACE actually tests: a Compute Engine instance template, a managed instance group of two, a firewall rule that allows HTTP from anywhere but SSH from nowhere but your own IP, a Cloud Monitoring uptime check against the instance's external IP, and an alerting policy that emails you if the uptime check fails twice. Then delete one instance by hand and watch the MIG replace it without you doing anything else. That loop — deploy, secure, observe, self-heal — is the entire ACE in miniature, and it's also the smallest unit of what this course calls reliability.

🎬 At the Reliability Watch
🦫

Benny the Beaver: I've been quietly studying for the ACE. Projects, IAM, MIGs, the whole console.

🦊

Foxy: Isn't that a pretty basic exam for someone who already runs on-call for a production system?

🦫

Benny the Beaver: Sure, but half my "I don't know GCP well enough" moments last quarter were things this exam covers directly — which compute service actually fits, how IAM inheritance works, where the uptime check even lives.

🦉

Professor Owl: And that's exactly the right order. The Professional Cloud DevOps Engineer this course already covers assumes you can do all of that without thinking about it, so it can spend its own weight on pipelines and SRE practice instead.

🐢

Timmy the Turtle: Just don't let "I can deploy a VM and read a dashboard" quietly become "therefore I know how much reliability to promise on it." Those are different questions, and the ACE only answers the first one.

🦫

Benny the Beaver: Deal. ACE first, Professional exam after. You two keep the error-budget math and the on-call pager away from me until then — that's Sol's and Pip's job.

✓ Checkpoint

1. What kind of exam is the ACE — knowledge-based or performance-based — and how is it delivered? 2. How does the ACE differ from the Professional Cloud DevOps Engineer in scope, and why do SREs often take the ACE first? 3. Name three of the five official ACE domains. 4. Give one concrete example of an IAM mistake the exam expects you to avoid, and explain why it matters in a real production account. 5. Name one situation in which someone should skip the ACE entirely.

Check your answers
  1. It's a knowledge-based, closed-book, multiple-choice/multiple-select exam with no live environment — delivered either at a testing center or online with a remote proctor, unlike the CKA's live, performance-based, hands-on-a-cluster format.
  2. The ACE tests operational fluency on GCP — deploying, monitoring, and maintaining resources one project at a time — while the Professional Cloud DevOps Engineer tests CI/CD pipelines and SRE practice applied across services. SREs often take the ACE first because the Professional exam's domains assume that operational fluency already exists rather than teaching it from scratch.
  3. Any three of: Setting up a cloud solution environment; Planning and configuring a cloud solution; Deploying and implementing a cloud solution; Ensuring successful operation of a cloud solution; Configuring access and security.
  4. Any reasonable answer along the lines of: granting a role at the organization or folder level when it should have been scoped to a single project, since IAM policies inherit downward through the resource hierarchy — a binding meant for one project silently applies to every project underneath it, which is both an exam trap and a real-world privilege-escalation risk.
  5. Any of: you already operate GCP projects daily and the exam would teach you little (go straight to the Professional Cloud DevOps Engineer instead); your platform runs on a different cloud entirely; or your actual gap is SRE practice itself rather than console fluency, better closed by the SRE Foundation or this course's own certifications.