Question

Difficulty: MediumMonitoring and Log Routing Solutions

An organization has workloads deployed in the East US and North Europe regions. Regulatory requirements mandate that log data generated in North Europe must reside and be stored within North Europe to comply with data sovereignty regulations. Similarly, logs from East US must remain in the United States. A centralized security audit team based in the United States requires the ability to run ad-hoc compliance queries across the log data of both regions.

You need to design a monitoring and log routing architecture that satisfies these requirements.

Which two configurations should you include in the design?

  1. A Log Analytics workspace in the East US region and a separate Log Analytics workspace in the North Europe region to host logs locally.Answer
  2. Cross-workspace queries in Azure Monitor to allow the security audit team to query data across both workspaces.Answer
  3. C
    A single, centralized Log Analytics workspace located in the East US region to collect logs from both regions.
  4. D
    An Azure Event Hubs namespace deployed in the East US region as the sole consolidation point for log ingestion.
  5. E
    An Azure Policy configured with the Deny effect to block any resource deployment that does not direct logs to the US-based workspace.

Answer

To satisfy the requirements, deploy a Log Analytics workspace in the East US region and a separate Log Analytics workspace in the North Europe region to host logs locally, and configure cross-workspace queries in Azure Monitor to allow the security audit team to query data across both workspaces.
Deploying separate Log Analytics workspaces in the East US and North Europe regions ensures that log data is stored locally within its respective region, satisfying data residency regulations. Enabling cross-workspace queries allows the centralized security audit team to run Kusto Query Language (KQL) queries across both workspaces from a single pane of glass without violating sovereignty, as the data itself is not permanently relocated.

Step-by-Step Solution

1
Analyze the regional data residency requirements.
Identified that logs generated in North Europe must stay in North Europe, and logs generated in East US must stay in the United States.
This requires deploying separate Log Analytics workspaces in each region to ensure local storage and compliance.
2
Determine how the central security team can query data without violating residency rules.
Azure Monitor supports cross-workspace queries using Kusto Query Language (KQL).
Cross-workspace queries fetch results dynamically without moving the stored log data from its respective regional workspace.

Key Concept

Designing regional Log Analytics workspaces to meet data sovereignty requirements while enabling centralized querying via cross-workspace queries.
Estimated Time:2m 0s
Rate this question