- A
Configure Kubernetes TLS Secrets and mount them as volumes in each pod.
Why wrong: Manually managing TLS Secrets requires certificate rotation, application code to load certs, and doesn't provide automatic mTLS between services. This requires code changes and significant operational work.
- B
Enable Anthos Service Mesh with mTLS policy set to STRICT mode.
ASM (based on Istio) injects Envoy sidecars that handle mTLS automatically. In STRICT mode, all service-to-service communication requires mTLS. No application code changes needed — the sidecar handles everything.
- C
Use Cloud Armor to enforce TLS between services within the cluster.
Why wrong: Cloud Armor is an edge security service (WAF/DDoS protection) for internet-facing load balancers, not for in-cluster service-to-service encryption.
- D
Enable GKE node-to-node encryption to encrypt all traffic between nodes.
Why wrong: Node-to-node encryption encrypts traffic at the node level (host-to-host network layer), not at the application service level. It doesn't provide mTLS between specific services.
Quick Answer
The answer is to enable Anthos Service Mesh with mTLS policy set to STRICT mode. This solution meets the requirement for mTLS service-to-service encryption in GKE without code changes because Anthos Service Mesh automatically injects Envoy sidecar proxies into each pod, handling all certificate issuance, rotation, and mutual TLS handshakes transparently at the infrastructure layer. On the Google Associate Cloud Engineer exam, this scenario tests your understanding that ASM decouples security from application logic—a common trap is assuming you need to modify deployments or use a separate certificate manager, but STRICT mode enforces encryption cluster-wide with zero application changes. Remember the key distinction: PERMISSIVE mode allows both plaintext and TLS traffic for gradual migration, while STRICT mode enforces mTLS exclusively. A useful memory tip is “STRICT means no exceptions—every service must talk TLS, no code required.”
Google ACE Configuring access and security Practice Question
This ACE practice question tests your understanding of configuring access and security. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Your organization mandates that all service-to-service communication within a GKE cluster must be encrypted in transit using mutual TLS (mTLS). The team does not want to manage certificates or modify application code. Which solution meets these requirements?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Enable Anthos Service Mesh with mTLS policy set to STRICT mode.
Anthos Service Mesh (ASM) with mTLS set to STRICT mode enforces mutual TLS between all services in the mesh without requiring any application code changes or manual certificate management. ASM automatically injects Envoy sidecar proxies that handle certificate issuance, rotation, and encryption, meeting the requirement for encrypted service-to-service communication with mTLS.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Configure Kubernetes TLS Secrets and mount them as volumes in each pod.
Why it's wrong here
Manually managing TLS Secrets requires certificate rotation, application code to load certs, and doesn't provide automatic mTLS between services. This requires code changes and significant operational work.
- ✓
Enable Anthos Service Mesh with mTLS policy set to STRICT mode.
Why this is correct
ASM (based on Istio) injects Envoy sidecars that handle mTLS automatically. In STRICT mode, all service-to-service communication requires mTLS. No application code changes needed — the sidecar handles everything.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Use Cloud Armor to enforce TLS between services within the cluster.
Why it's wrong here
Cloud Armor is an edge security service (WAF/DDoS protection) for internet-facing load balancers, not for in-cluster service-to-service encryption.
- ✗
Enable GKE node-to-node encryption to encrypt all traffic between nodes.
Why it's wrong here
Node-to-node encryption encrypts traffic at the node level (host-to-host network layer), not at the application service level. It doesn't provide mTLS between specific services.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the distinction between network-layer encryption (node-to-node) and application-layer mTLS (service-to-service), leading candidates to mistakenly choose node-to-node encryption as a solution for service-level mTLS requirements.
Detailed technical explanation
How to think about this question
Anthos Service Mesh leverages the Istio control plane to issue X.509 certificates to each Envoy sidecar proxy via the Citadel agent, enabling automatic mTLS. The STRICT mTLS policy (peerAuthentication) ensures that any service without a valid client certificate is rejected, providing both encryption and mutual authentication. Under the hood, the sidecar proxies intercept all TCP traffic using iptables rules and perform TLS handshakes transparently to the application containers.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Configuring access and security — study guide chapter
Learn the concepts, then practise the questions
- →
Configuring access and security practice questions
Targeted practice on this topic area only
- →
All ACE questions
500 questions across all exam domains
- →
Google Associate Cloud Engineer study guide
Full concept coverage aligned to exam objectives
- →
ACE practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related ACE practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Setting up a cloud solution environment practice questions
Practise ACE questions linked to Setting up a cloud solution environment.
Planning and configuring a cloud solution practice questions
Practise ACE questions linked to Planning and configuring a cloud solution.
Deploying and implementing a cloud solution practice questions
Practise ACE questions linked to Deploying and implementing a cloud solution.
Ensuring successful operation of a cloud solution practice questions
Practise ACE questions linked to Ensuring successful operation of a cloud solution.
Configuring access and security practice questions
Practise ACE questions linked to Configuring access and security.
ACE fundamentals practice questions
Practise ACE questions linked to ACE fundamentals.
ACE scenario practice questions
Practise ACE questions linked to ACE scenario.
ACE troubleshooting practice questions
Practise ACE questions linked to ACE troubleshooting.
Practice this exam
Start a free ACE practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this ACE question test?
Configuring access and security — This question tests Configuring access and security — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Enable Anthos Service Mesh with mTLS policy set to STRICT mode. — Anthos Service Mesh (ASM) with mTLS set to STRICT mode enforces mutual TLS between all services in the mesh without requiring any application code changes or manual certificate management. ASM automatically injects Envoy sidecar proxies that handle certificate issuance, rotation, and encryption, meeting the requirement for encrypted service-to-service communication with mTLS.
What should I do if I get this ACE question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 30, 2026
This ACE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the ACE exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.