Tüm alıştırma soruları

1198 soru

Soru 61Soru

You are designing a governance strategy for an Azure environment. You need to implement an Azure Policy that enforces secure transport settings on Azure Cache for Redis instances. The policy must meet the following compliance requirements:

- Ensure that the minimum TLS version for all Redis instances is set to 1.2.
- If a new instance is deployed with an older version, or without specifying the version, the deployment must succeed, but the configuration must be automatically updated to enforce TLS 1.2.
- Existing non-compliant resources must be flagged in compliance reports but not modified automatically.

Which Azure Policy effect should you include in the policy definition to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Modify

Cevap

Modify
The correct answer is the Modify effect. The Modify effect allows Azure Policy to add, update, or remove properties or tags on a resource during creation or update. Since the requirement is to update the minimum TLS version property directly on the Azure Cache for Redis resource while allowing the deployment to succeed, the Modify effect is the most appropriate and efficient choice.

Adım Adım Çözüm

1
Analyze the compliance goal to determine if non-compliant resource deployments should be blocked or corrected.
The requirement states that the deployment must succeed but the configuration must be automatically corrected to enforce TLS 1.2. This rules out the Deny effect.
Understanding the desired workflow helps narrow down the policy effects to those that perform remediation.
2
Identify the nature of the resource configuration change.
The change involves updating a direct property (minimum TLS version) on the resource under evaluation (Azure Cache for Redis) during creation or update.
Distinguishing between resource property modification and secondary resource deployment is necessary to choose between Modify and DeployIfNotExists.
3
Select the correct Azure Policy remediation effect based on the resource scope.
The Modify effect is selected because it is designed to alter properties directly on the evaluated resource during provisioning.
Using Modify avoids the administrative overhead of DeployIfNotExists, which is meant for template-based deployments of related resources.

Anahtar Kavram

Azure Policy effects determine the action taken when compliance rules are evaluated. The 'Modify' effect allows you to add, update, or remove properties directly on a resource during creation or update. In contrast, 'DeployIfNotExists' is used to deploy companion resources (like extensions or diagnostic logs) using ARM templates.
Soru 62Soru

A healthcare provider, MedVitals Systems, operates a hierarchical Azure resource structure. The Root Management Group contains a child Management Group named Shared-Services. A subscription named Archive-Billing is placed within the Shared-Services Management Group. You need to design an Azure governance architecture to meet the following requirements:
- Ensure that any newly deployed virtual machines (VMs) automatically have the dependency agent installed.
- Ensure that the Archive-Billing subscription is not subject to the VM agent requirement to prevent unnecessary agent installations on archived workloads.
- Ensure that all storage accounts enforce secure transfer (HTTPS). Existing non-compliant storage accounts must be flagged in compliance reports but must not be modified or blocked.
- Minimize administrative overhead.

Which design should you recommend?

Cevabı ve açıklamayı göster

Cevap: Assign a policy definition that uses the DeployIfNotExists effect for the VM dependency agent to the Shared-Services Management Group, with the Archive-Billing subscription specified in the exclusion scope (notScopes) of the assignment. Assign a policy definition that uses the Deny effect for storage account secure transfer to the Root Management Group.

Cevap

Assign a policy definition that uses the DeployIfNotExists effect for the VM dependency agent to the Shared-Services Management Group, with the Archive-Billing subscription specified in the exclusion scope (notScopes) of the assignment. Assign a policy definition that uses the Deny effect for storage account secure transfer to the Root Management Group.
The correct architecture uses a DeployIfNotExists policy assigned at the management group level to automate the installation of the VM dependency agent. To exclude the Archive-Billing subscription, the subscription is configured in the exclusion scope (notScopes) of the assignment, which avoids the overhead of managing multiple assignments. To enforce secure transfer on storage accounts, a Deny policy is assigned at the Root Management Group. The Deny effect blocks the creation of new non-compliant resources, while existing resources are only evaluated and marked as non-compliant in reports without being altered or blocked, satisfying all requirements with the lowest administrative overhead.

Adım Adım Çözüm

1
Determine the appropriate policy effect for VM agent installation.
DeployIfNotExists (DINE) is selected because installing an agent involves deploying a VM extension, which is a nested resource template deployment.
Using DINE automates the deployment of missing extension resources during resource creation or remediation.
2
Identify the mechanism to exclude the Archive-Billing subscription.
Exclusion scopes (notScopes) are configured on the policy assignment applied at the Shared-Services Management Group level.
Exclusion scopes are evaluated natively during assignment, avoiding the administrative overhead of creating duplicate policy assignments or disabling policies at child scopes.
3
Select the correct policy effect for storage account secure transfer compliance.
The Deny effect is chosen for the storage account secure transfer policy.
The Deny effect prevents the creation or update of any new non-compliant storage accounts. For existing non-compliant storage accounts, Azure Policy flags them as non-compliant in reports but does not modify, delete, or block them, aligning perfectly with the requirement.

Anahtar Kavram

Azure Policy effects and assignment scope configuration
Tahmini Süre:2m 0s
Soru 63Soru

Solas Renewable Solutions is designing a hybrid and multi-tenant identity solution to support its growing infrastructure. The company has an on-premises Active Directory Domain Services (AD DS) forest and has recently acquired a subsidiary with its own Microsoft Entra ID tenant.

Solas has the following identity and access management requirements:
- Ensure that users from the corporate office can sign in to Microsoft Entra ID services even if the on-premises datacenter goes offline.
- Enable automatic account lifecycle management and Global Address List (GAL) visibility for users from the acquired subsidiary's tenant.
- Allow external suppliers to securely access internal resources using their existing corporate credentials.
- Ensure that certain security-sensitive on-premises users have their login credentials validated in real-time against on-premises domain controllers, without storing password hashes in the cloud.

You need to recommend the appropriate identity technology for each requirement.

Match the identity requirements on the left with the correct Microsoft Entra feature or configuration on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

On-premises users must sign in to Microsoft Entra ID using their on-premises passwords. The authentication must be processed entirely in the cloud to ensure sign-in availability during an on-premises network outage.
External partners must access corporate line-of-business applications. They must use their own corporate or social identities, and Solas must not manage their password resets or lifecycles.
A newly acquired business unit with its own Microsoft Entra ID tenant must have its user accounts automatically provisioned and updated in the Solas corporate tenant to facilitate search in the global address list.
User authentication requests must be validated in real-time against the on-premises Active Directory Domain Services (AD DS) using lightweight agents, without storing password hashes in the cloud.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Match the requirements as follows: cloud-resilient sign-in matches Password Hash Synchronization; automated tenant provisioning matches Cross-tenant synchronization; external contractor access matches Microsoft Entra B2B collaboration; real-time on-premises validation without cloud hashes matches Pass-through Authentication.
Matching cloud-resilient sign-in to Password Hash Synchronization (PHS) ensures authentication is processed entirely in the cloud. Matching automated tenant provisioning to Cross-tenant synchronization automates user creation between Microsoft Entra ID tenants. Matching external contractor access to Microsoft Entra B2B collaboration leverages external identities, and matching real-time local verification to Pass-through Authentication (PTA) prevents password hashes from being stored in the cloud.

Adım Adım Çözüm

1
Analyze the requirement for on-premises user sign-in that remains functional during on-premises outages.
Password Hash Synchronization (PHS) is selected.
PHS copies password hashes to Microsoft Entra ID, allowing authentication to occur completely in the cloud, independent of on-premises connectivity.
2
Analyze the requirement to automate provisioning and Global Address List visibility between the corporate tenant and the acquired subsidiary's tenant.
Cross-tenant synchronization is selected.
Cross-tenant synchronization automates the creation, management, and deletion of B2B users between distinct Microsoft Entra ID tenants within the same organization.
3
Analyze the requirement to allow external suppliers to access internal resources using their own corporate credentials.
Microsoft Entra B2B collaboration is selected.
B2B collaboration allows external partners to access corporate apps while managing their own credentials, offloading management from Solas.
4
Analyze the requirement for real-time validation against on-premises domain controllers without storing password hashes in the cloud.
Pass-through Authentication (PTA) is selected.
PTA validates credentials in real-time using lightweight on-premises agents, meaning no password hashes are stored in the cloud.

Anahtar Kavram

Selecting appropriate Microsoft Entra hybrid and multi-tenant authentication and collaboration features based on organization resiliency, security, and governance requirements.
Soru 64Soru

Zenith Retail Systems is designing a governance strategy for its Azure subscriptions. The security team requires that all virtual machines deployed to a resource group named 'PCI-DSS-Production' are automatically registered with Azure Backup. If a virtual machine is created without a backup configuration, the system must automatically configure the backup protection and deploy the required recovery services resources without preventing the virtual machine from being created. Which Azure Policy effect should you recommend to meet this requirement?

Cevabı ve açıklamayı göster

Cevap: DeployIfNotExists

Cevap

DeployIfNotExists
The DeployIfNotExists effect is the correct choice because it evaluates the resource configuration and automatically executes a template deployment (in this case, establishing the backup configuration) when the target resource is created, without blocking the resource creation itself.

Adım Adım Çözüm

1
Analyze the business and technical requirements.
The requirements dictate that resources must be automatically remediated (configured with Azure Backup) during deployment, and the deployment of the parent virtual machine must not be blocked.
This helps rule out auditing-only effects and blocking effects.
2
Evaluate the capabilities of Azure Policy effects.
The DeployIfNotExists effect allows the deployment of a nested template when a specific condition is met (e.g., when a VM is deployed but the backup configuration does not exist). The Deny effect blocks creation, and the AuditIfNotExists effect only audits compliance.
Choosing the correct policy effect depends on understanding whether the policy should block, audit, or deploy a remediation resource.
3
Compare DeployIfNotExists and Modify for resource remediation.
Modify is restricted to changing properties and tags on the target resource. Since enabling Azure Backup requires creating a separate backup item resource associated with a Recovery Services vault, a deployment operation is required, making DeployIfNotExists the correct choice.
This ensures the selected option has the technical capability to deploy the required child resources.

Anahtar Kavram

Azure Policy effects for automated remediation of resources
Soru 65Soru

A financial services firm, FinSecure Corp, is designing an Azure governance framework for its production subscriptions. The security team establishes two compliance mandates:

1. Prevent the deployment of any virtual machines that have public IP addresses directly associated with their network interfaces.
2. Ensure that all newly deployed virtual networks are automatically configured with diagnostic settings that send all network metrics to a central Log Analytics workspace.

You need to recommend the appropriate Azure Policy effects to satisfy these mandates with the least administrative effort.

Which two policy effects should you recommend?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The DeployIfNotExists effect for the virtual network diagnostic settings mandate; The Deny effect for the virtual machine public IP mandate

Cevap

DeployIfNotExists for the virtual network diagnostic settings mandate, and Deny for the virtual machine public IP mandate.
The correct options are DeployIfNotExists for the virtual network diagnostics mandate and Deny for the virtual machine public IP mandate. The Deny effect blocks the creation of resources that violate policy definitions, making it ideal for preventing public IP association on virtual machines. The DeployIfNotExists effect evaluates the resource configuration and automatically deploys secondary resources (such as diagnostic settings linked to a Log Analytics workspace) if they are missing, ensuring automated governance without blocking primary resource deployment.

Adım Adım Çözüm

1
Analyze the virtual machine requirement
The requirement is to prevent the deployment of VMs with public IPs.
Since the goal is to stop non-compliant resource creation, the Deny policy effect is the standard governance tool to block these deployments.
2
Analyze the virtual network diagnostics requirement
The requirement is to automatically configure diagnostic settings for new virtual networks.
Diagnostic settings are secondary resources. DeployIfNotExists (DINE) evaluates resources, and if a child/related resource (like diagnostic settings) is missing, it deploys it automatically.
3
Verify administrative overhead constraints
Using Deny for the VM mandate blocks violation at source. Using DeployIfNotExists for the virtual network mandate automatically remediates the configuration without blocking deployments, minimizing developer overhead.
Choosing Deny for diagnostic settings would disrupt deployments and require manual template configuration, while Audit would require manual remediation tasks.

Anahtar Kavram

Azure Policy effects determine how resources are evaluated and governed, using Deny to block non-compliant resources and DeployIfNotExists to automate secondary resource creation.
Soru 66Soru

An organization has multiple application teams deploying resources to separate resource groups within a single Azure subscription. You are designing a monitoring and log routing solution. The solution must meet the following requirements:
- Minimize administrative overhead by using the fewest Log Analytics workspaces possible.
- Allow developers to query diagnostic logs only for the specific resources they own.
- Prevent developers from viewing logs of resources owned by other teams.

Which of the following designs should you recommend?

Cevabı ve açıklamayı göster

Cevap: Deploy a single centralized Log Analytics workspace, route all diagnostic logs to this workspace, and grant developers Reader access to their respective Azure resources.

Cevap

Deploy a single centralized Log Analytics workspace, route all diagnostic logs to this workspace, and grant developers Reader access to their respective Azure resources.
The correct option minimizes administrative overhead by utilizing a single centralized Log Analytics workspace. To restrict developer access so they only view logs from their own resources, the resource-context access model is used. By granting developers Reader access to their specific resources or resource groups, they can query logs for those resources without having read access to the Log Analytics workspace itself. This prevents them from querying logs from other teams' resources.

Adım Adım Çözüm

1
Analyze the organizational requirement for minimizing administrative overhead.
A single centralized Log Analytics workspace is preferred over multiple regional or per-team workspaces, reducing management complexity.
Creating multiple workspaces increases overhead for lifecycle management, access controls, and cross-workspace querying.
2
Analyze how to enforce security boundaries where developers can only read logs of their own resources.
Use resource-context access control, where permissions are evaluated based on the user's access to the Azure resource itself, not the workspace.
When querying logs via Azure Monitor, if a user has read access to the resource (e.g., Reader role), they can query its diagnostic logs in a centralized workspace without workspace-level permissions.
3
Combine the centralized workspace design with resource-context RBAC permissions.
Route all logs to the central workspace and grant developers Reader permissions on their specific resource groups or resources.
This satisfies all requirements: overhead is minimized, developers can read their own logs, and they cannot access other teams' logs.

Anahtar Kavram

Azure Monitor Log Analytics resource-context access control
Soru 67Soru

Zephyr Energy Services has an on-premises Active Directory Domain Services (AD DS) domain. The company is designing a hybrid identity solution to integrate AD DS with a Microsoft Entra ID tenant. The solution must meet the following requirements:
- Users must be able to authenticate to cloud services using their on-premises credentials.
- User password hashes must not be synchronized or stored in the cloud under any circumstances due to regulatory compliance policies.
- Authentication requests must be validated directly against on-premises Active Directory domain controllers.
- The deployment must avoid the infrastructure overhead and complexity of Active Directory Federation Services (AD FS).

Which authentication sync method should you include in the design to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Pass-through Authentication (PTA) with Seamless Single Sign-On (SSO)

Cevap

Pass-through Authentication (PTA) with Seamless Single Sign-On (SSO)
Pass-through Authentication (PTA) allows users to authenticate to cloud services by validating their passwords directly against their on-premises Active Directory. Because validation happens on-premises using a lightweight agent, no password hashes need to be synchronized to Microsoft Entra ID. This satisfies the security compliance constraints while avoiding the heavy infrastructure overhead of Active Directory Federation Services (AD FS).

Adım Adım Çözüm

1
Analyze the authentication validation requirements.
The requirements demand that passwords or password hashes must not be stored in the cloud and must be validated against on-premises domain controllers directly.
This rules out Password Hash Synchronization (PHS) because PHS copies password hashes to Microsoft Entra ID.
2
Analyze the infrastructure overhead and complexity constraints.
The solution must avoid Active Directory Federation Services (AD FS) to minimize overhead.
This rules out AD FS federated sign-in, which would otherwise satisfy the direct on-premises validation requirement but requires extensive on-premises infrastructure.
3
Select the hybrid identity method that satisfies all remaining constraints.
Pass-through Authentication (PTA) allows direct on-premises validation of passwords via a lightweight agent without storing password hashes in the cloud and without the complexity of AD FS.
PTA meets all defined compliance and architectural constraints.

Anahtar Kavram

Selecting the appropriate hybrid identity synchronization and authentication method based on security compliance, sign-in requirements, and infrastructure complexity.
Tahmini Süre:1m 30s
Soru 68Soru

A retail company operates a multi-tier e-commerce platform deployed in the East US 2 and UK South regions. The company's compliance policy dictates that all auditing and diagnostic data generated in UK South must remain within the UK geographic boundary. Regional administrators in each region must only be able to view logs for resources within their administrative scope. The security team must be able to run queries across logs from both regions. Which of the following log routing and workspace architectures should you recommend?

Cevabı ve açıklamayı göster

Cevap: Deploy one Log Analytics workspace in East US 2 and another in UK South. Route diagnostic logs from resources in each region to their respective regional workspace. Grant workspace access to regional administrators using Microsoft Entra groups assigned to the respective workspace.

Cevap

Deploy two separate Log Analytics workspaces (one in East US 2 and one in UK South) to satisfy regional data residency requirements, and manage access to these workspaces using Microsoft Entra groups.
Deploying separate regional Log Analytics workspaces ensures that data residency constraints are met because the logs for UK South remain within the UK geographic boundary. The security team can still perform cross-workspace queries when needed. Access is restricted regionally by granting workspace-level permissions to regional administrators using Microsoft Entra groups, which satisfies both isolation and security best practices.

Adım Adım Çözüm

1
Analyze compliance and data residency constraints.
Determine that since UK South data must remain within the UK, a single centralized workspace in East US 2 cannot be used. We must deploy separate workspaces in both East US 2 and UK South.
Storing UK logs in East US 2 violates the data residency requirement.
2
Configure diagnostic log routing.
Configure Azure resources to send diagnostic logs to their local regional workspace.
This aligns the logging pipeline with data residency boundaries.
3
Implement access control for regional administrators.
Assign workspace access to regional administrators using Microsoft Entra security groups.
Using Entra groups is the recommended practice for scalable and manageable access control, avoiding direct user assignments.

Anahtar Kavram

Designing regional Log Analytics workspaces to satisfy compliance constraints and setting up secure workspace access control using Microsoft Entra groups.
Tahmini Süre:1m 30s
Soru 69Soru

An enterprise is scaling its Azure footprint and needs to grant a newly formed team of developers permission to restart virtual machines in a development resource group. To ensure scalable management and adhere to the principle of least privilege, how should you assign the required permissions?

Cevabı ve açıklamayı göster

Cevap: Create a Microsoft Entra ID security group containing the developers, and assign the Virtual Machine Contributor role to the group at the resource group scope.

Cevap

Create a Microsoft Entra ID security group containing the developers, and assign the Virtual Machine Contributor role to the group at the resource group scope.
The correct option outlines the standard best practice for Azure RBAC governance. Permissions should be granted to a group rather than individuals to ease maintenance. In addition, the assignment is restricted to the specific resource group to enforce the principle of least privilege.

Adım Adım Çözüm

1
Identify the target users and scope.
The target users are a team of developers, and the scope is the development resource group.
Permissions should always be scoped to the lowest level required to limit exposure.
2
Create an identity container for group-based administration.
A Microsoft Entra ID security group is created, and the developers are added as members.
Managing permissions at the group level ensures governance scalability.
3
Assign the appropriate built-in role to the security group.
The Virtual Machine Contributor role is assigned to the security group at the resource group scope.
This grants the minimum required access needed to restart virtual machines within that specific resource group without giving broader access.

Anahtar Kavram

Azure RBAC Group Assignment and Least Privilege Scope
Tahmini Süre:45s
Soru 70Soru

Vanguard Retailers has an on-premises Active Directory Domain Services (AD DS) domain. You are designing a hybrid identity solution to sync user accounts to a single Microsoft Entra ID tenant. The solution must meet the following requirements:
- Users must sign in to cloud services using their on-premises credentials.
- Users must be able to change their passwords in the cloud and have them update on-premises.
- Authentication must succeed even during an on-premises network outage.
- On-premises infrastructure footprint must be minimized.

Which synchronization method should you recommend?

Cevabı ve açıklamayı göster

Cevap: Password Hash Synchronization (PHS) with password writeback

Cevap

Password Hash Synchronization (PHS) with password writeback
Password Hash Synchronization (PHS) with password writeback meets all requirements. PHS copies password hashes to Microsoft Entra ID, allowing authentication to succeed entirely in the cloud even during on-premises network or server outages. It has the smallest on-premises footprint, requiring only the Microsoft Entra Connect sync service. Enabling password writeback ensures that any password updates performed in the cloud are immediately synchronized back to the on-premises Active Directory Domain Services.

Adım Adım Çözüm

1
Analyze the business continuity requirement.
Identify that authentication must succeed during an on-premises outage, which requires the authentication authority to reside in the cloud. This rules out Active Directory Federation Services (AD FS) and Pass-through Authentication (PTA).
Both AD FS and PTA rely on active on-premises infrastructure to complete authentication requests.
2
Evaluate the infrastructure and password self-service requirements.
Determine that Password Hash Synchronization (PHS) requires only the Microsoft Entra Connect sync agent on-premises, minimizing footprint. Password writeback must be enabled to sync cloud password changes back to AD DS.
PHS provides the lowest infrastructure footprint compared to federation or pass-through configurations.
3
Verify administrative access governance compliance.
Reject options that permanently assign privileged roles, as Privileged Identity Management (PIM) assignments should be configured as eligible rather than permanently active.
Ensuring roles are eligible supports just-in-time (JIT) access governance and minimizes administrative exposure.

Anahtar Kavram

Selecting a hybrid identity synchronization method that supports cloud-based authentication, password self-service writeback, and high availability during on-premises outages.
Soru 71Soru

Your organization, Contoso Global Investments, uses an Azure Management Group hierarchy consisting of a Root Management Group (Root-MG), under which sit the Core-Services Management Group (Core-MG) and the Business-Line Management Group (Business-MG). Under Business-MG, you have two child management groups: Production (Prod-MG) and Development (Dev-MG). You need to design an Azure Policy governance strategy to meet the following compliance requirements:

1. All Azure Storage Accounts deployed within Business-MG and its descendants must only allow HTTPS traffic. Any deployment attempt of a storage account that allows HTTP traffic must be blocked.
2. All virtual machines deployed in Prod-MG must be configured for Azure Backup. If a virtual machine is deployed without a backup configuration, Azure must automatically deploy the backup association after the virtual machine is successfully created, without blocking the deployment itself.
3. To control costs, G-series virtual machines must be prohibited from being deployed anywhere under Root-MG, except for a single subscription named HPC-Prod-Sub under Prod-MG, which hosts a specialized risk analysis engine.

Which set of Azure Policy assignments and effects should you recommend to meet these requirements while minimizing administrative overhead?

Cevabı ve açıklamayı göster

Cevap: 1. Assign a policy with the Deny effect for storage account HTTPS enforcement at the Business-MG scope. 2. Assign a policy with the DeployIfNotExists effect for VM Backup at the Prod-MG scope. 3. Assign a policy with the Deny effect for G-series VMs at the Root-MG scope, with HPC-Prod-Sub specified in the notScopes assignment property.

Cevap

Assign a policy with the Deny effect for storage account HTTPS at the Business-MG scope; assign a policy with the DeployIfNotExists effect for VM Backup at the Prod-MG scope; and assign a policy with the Deny effect for G-series VMs at the Root-MG scope with HPC-Prod-Sub in the notScopes property.
The correct recommendation uses the Deny effect at Business-MG for storage account HTTPS enforcement because the requirement mandates blocking non-compliant deployments. It uses the DeployIfNotExists effect at Prod-MG for VM Backup because it allows the VM to be deployed first and then automatically configures backup post-deployment without blocking creation. Lastly, it assigns the G-series restriction at the Root-MG level and excludes HPC-Prod-Sub using the notScopes property. This strategy enforces the restriction globally while allowing the exception with a single assignment, representing the lowest possible administrative overhead.

Adım Adım Çözüm

1
Determine the policy effect for the storage account HTTPS enforcement requirement.
Since any deployment attempt of a storage account that allows HTTP traffic must be blocked, the Deny effect must be used. Assigning it at the Business-MG scope ensures it applies to Business-MG and all child groups (Prod-MG and Dev-MG).
The Deny effect blocks the resource deployment if the evaluated properties match the non-compliant conditions.
2
Determine the policy effect for the VM Backup configuration requirement.
Since non-compliant virtual machines must be remediated after deployment without blocking the VM deployment itself, the DeployIfNotExists (DINE) effect must be used at the Prod-MG scope.
DeployIfNotExists allows a deployment template to run when the target resource is created, making it suitable for deploying auxiliary resources like backup associations after the parent resource is created successfully.
3
Determine the assignment scope and exclusion mechanism for the VM SKU restriction.
To prohibit G-series VMs across all management groups except HPC-Prod-Sub with the least administrative overhead, assign a Deny policy at Root-MG and add the resource ID of HPC-Prod-Sub to the notScopes property of the assignment.
Using the notScopes property during assignment at a higher scope avoids the need to assign policies individually to each child management group, reducing management overhead and ensuring automatic inheritance for new management groups.

Anahtar Kavram

Azure Policy effects and assignment scope exclusions
Soru 72Soru

A multinational manufacturing company operates workloads in the Germany West Central and East US regions. The compliance and security teams mandate the following requirements:
- Virtual machine resource logs must be stored regionally to comply with strict data residency laws, and regional operations teams must only access logs generated within their respective region.
- Diagnostic logs of Azure Key Vaults containing cryptographic keys must be retained for at least 7 years in a tamper-proof state.
- Azure Activity logs and Microsoft Entra ID sign-in logs must be forwarded to a third-party SIEM tool located in the on-premises datacenter.
- Administrative access to monitoring settings must be automatically enforced for new resources, and role assignments must scale without administrative overhead.

Which two components or configurations should you include in the log routing and monitoring design?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: An Azure Event Hubs namespace to stream Azure Activity and Microsoft Entra ID sign-in logs to the on-premises SIEM.; An Azure Storage account configured with a time-based retention immutability policy to store Key Vault diagnostic logs.

Cevap

An Azure Event Hubs namespace to stream Azure Activity and Microsoft Entra ID sign-in logs to the on-premises SIEM, and an Azure Storage account configured with a time-based retention immutability policy to store Key Vault diagnostic logs.
Streaming logs to an external SIEM is achieved by configuring Azure Monitor diagnostic settings to point to an Azure Event Hubs namespace. Key Vault diagnostic logs require a 7-year tamper-proof period, which is met by using an Azure Storage account configured with a time-based retention immutability policy (WORM).

Adım Adım Çözüm

1
Select the log forwarding mechanism for the third-party on-premises SIEM.
Identify Azure Event Hubs as the standard routing destination.
Azure Monitor diagnostic settings integrate natively with Azure Event Hubs to stream log data in real-time to third-party consumer tools and on-premises SIEMs.
2
Select the storage mechanism for the 7-year tamper-proof Key Vault logs.
Identify Azure Storage with an immutability policy.
To satisfy long-term retention and WORM (write-once-read-many) compliance, Azure Storage offers time-based retention immutability policies that lock the data against deletion or overwriting.
3
Verify isolation and residency requirements for Virtual Machine logs.
Reject the single centralized Log Analytics workspace design.
Data sovereignty and data residency requirements require separate regional Log Analytics workspaces (Germany West Central and East US) so logs do not cross geopolitical boundaries.
4
Ensure scalable administration and correct policy configurations.
Reject direct user RBAC assignments and Deny policy effects.
RBAC permissions should be assigned to groups rather than individual users to scale administrative operations. Policy effects should be DeployIfNotExists to configure diagnostic settings rather than Deny, which merely blocks resource deployment.

Anahtar Kavram

Designing compliant Azure Monitor diagnostic log routing, regional data residency boundaries, and immutable long-term storage.
Soru 73Soru

Apex Biologics has an on-premises Active Directory Domain Services (AD DS) forest named ad.apexbiologics.com and two Microsoft Entra ID tenants: a corporate tenant (apexbiologics.com) and a research tenant (apexresearch.com).

You are designing a hybrid identity and multi-tenant solution with the following requirements:
- Users in the corporate tenant must be able to authenticate to Azure resources using their on-premises credentials.
- If the on-premises network or AD DS domain controllers go offline, users must still be able to sign in to Azure resources.
- Users must be able to reset their own passwords from the web, and these password changes must immediately write back to the on-premises AD DS.
- Corporate administrators must be able to collaborate securely with guest users in the research tenant without managing their accounts directly.

Which of the following configurations should you include in the hybrid identity design? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Enable Password Hash Synchronization (PHS) as the hybrid authentication method in Microsoft Entra Connect.; Enable Password Writeback in Microsoft Entra Connect.

Cevap

To satisfy the requirements, the hybrid identity design must include enabling Password Hash Synchronization (PHS) and enabling Password Writeback in Microsoft Entra Connect.
To support authentication during on-premises outages, the identity solution must use Password Hash Synchronization (PHS) because authentication occurs directly within Microsoft Entra ID without needing to contact on-premises domain controllers. To support self-service password resets that update on-premises AD DS, Password Writeback must be enabled in Microsoft Entra Connect.

Adım Adım Çözüm

1
Evaluate the authentication and business continuity requirement during an on-premises outage.
Password Hash Synchronization (PHS) must be chosen. Unlike Pass-through Authentication (PTA) or Active Directory Federation Services (AD FS), PHS allows Microsoft Entra ID to authenticate users in the cloud without needing real-time connection to on-premises domain controllers.
This guarantees that users can sign in to Azure resources even if the on-premises network or domain controllers are offline.
2
Address the self-service password reset (SSPR) writeback requirement.
Enable Password Writeback in Microsoft Entra Connect.
Password writeback ensures that password changes made in Microsoft Entra ID are immediately written back to the on-premises AD DS directory.

Anahtar Kavram

Designing hybrid identity authentication, business continuity, and password writeback for Microsoft Entra ID.
Soru 74Soru

An enterprise is designing a centralized monitoring and log routing architecture for their Azure workloads. The architecture must satisfy specific storage, analytics, and cost requirements. Match each log source and business requirement on the left to its correct Azure destination or configuration on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

OS-level syslog and performance data from Azure Virtual Machines where specific events must be filtered at the source to minimize workspace ingestion costs.
Azure subscription-level resource management actions that must be archived for 5 years for audit compliance at the lowest storage cost.
Near-real-time resource diagnostic logs that must be immediately streamed to an external, non-Azure Security Information and Event Management (SIEM) system.
Virtual Network traffic flows that must be analyzed to identify traffic patterns, security anomalies, and bandwidth hotspots.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

OS-level syslog with source filtering matches Azure Monitor Agent with Data Collection Rules; subscription-level activity logs for 5-year archive match Azure Storage account with lifecycle management; near-real-time external SIEM integration matches Azure Event Hubs; and virtual network traffic analysis matches Log Analytics with Traffic Analytics enabled.
The correct pairings map the requirements to the respective Azure monitoring features that best satisfy the specified constraints: DCRs for source filtering, Storage accounts for low-cost archival, Event Hubs for real-time external streaming, and Traffic Analytics for deep network flow insights.

Adım Adım Çözüm

1
Analyze VM OS log collection options.
Identify that the Azure Monitor Agent (AMA) combined with Data Collection Rules (DCRs) allows filtering logs at the source, preventing unnecessary ingestion overhead.
Source-side filtering is key to minimizing costs when collecting VM syslog and performance counters.
2
Evaluate long-term compliance storage costs.
Select Azure Storage account with lifecycle management policies.
Log Analytics is cost-prohibitive for simple 5-year archival. Storage accounts provide the cheapest raw storage, and lifecycle policies automate cleanup.
3
Identify the destination for real-time external integration.
Select Azure Event Hubs.
Event Hubs acts as the ingestion broker for external SIEMs to consume Azure diagnostic telemetry in near-real-time.
4
Select the correct network monitoring tool for flow analysis.
Select Traffic Analytics (Network Watcher) routing to a Log Analytics workspace.
Traffic Analytics is specifically designed to analyze NSG flow logs in a Log Analytics workspace to identify security risks and traffic bottlenecks.

Anahtar Kavram

Azure Monitor Log Routing Architecture
Tahmini Süre:2m 0s
Soru 75Soru

You are designing the identity security strategy for a Microsoft Entra ID tenant. You need to map specific identity requirements to their correct Microsoft Entra ID configurations. Match each Microsoft Entra ID feature to its correct primary function.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Security defaults
Named locations
Authentication strength
Emergency access accounts

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Security defaults match with providing pre-configured security settings. Named locations match with defining trusted IP ranges or geographic areas. Authentication strength matches with specifying the specific combination of authentication methods. Emergency access accounts match with highly privileged accounts excluded from policies to prevent lockout.
Matching the features to their correct functions aligns each tool with its primary purpose: Security defaults for a basic out-of-the-box baseline; Named locations for network-based policy boundaries; Authentication strength for enforcing specific multi-factor methods; and Emergency access accounts as a fallback to prevent total tenant lockout.

Adım Adım Çözüm

1
Analyze the role of Security defaults.
Identified that Security defaults provide standard, pre-configured security settings (like MFA requirements) out-of-the-box, which aligns with the description of providing basic security without custom policies.
Security defaults are designed for organizations looking for a basic security baseline without the complexity of managing custom Conditional Access policies.
2
Analyze the role of Named locations.
Identified that Named locations allow defining IP address ranges and geographical regions to be used within Conditional Access conditions.
This configuration is explicitly used to define network boundaries or locations for policy evaluation.
3
Analyze the role of Authentication strength.
Identified that Authentication strength enforces specific multi-factor authentication methods (like phishing-resistant keys) during Conditional Access evaluation.
It acts as a grant control determining the quality of the authentication method required.
4
Analyze the role of Emergency access accounts.
Identified that Emergency access accounts are dedicated administrative accounts excluded from policies to avoid complete lockout.
Excluding these accounts from Conditional Access policies ensures that administrators can regain access to the tenant if a misconfiguration or outage occurs.

Anahtar Kavram

Microsoft Entra ID features for securing authentication and tenant access management, including basic defaults, location-based conditions, authentication methods verification, and emergency recovery options.
Tahmini Süre:2m 0s
Soru 76Soru

Your organization has ten Azure subscriptions organized under a single management group. A new team of security auditors needs to inspect the configuration of all resources across all ten subscriptions. You must design an access control solution that minimizes administrative overhead, adheres to the principle of least privilege, and ensures scalability.

Which approach should you recommend?

Cevabı ve açıklamayı göster

Cevap: Create a Microsoft Entra ID group containing all security auditors, and assign the Reader role to this group at the management group scope.

Cevap

Create a Microsoft Entra ID group containing all security auditors, and assign the Reader role to this group at the management group scope.
The correct option is to create a Microsoft Entra ID group containing all security auditors and assign the Reader role to this group at the management group scope. This ensures that the permissions inherit down to all ten subscriptions under the management group, provides only the necessary read permissions, and simplifies identity management by assigning the role to a group rather than to individual users.

Adım Adım Çözüm

1
Determine the resource scope required for access.
The target scope spans across ten subscriptions under a single management group. The management group scope is selected to allow inheritance to all subscriptions.
Assigning the role at the management group scope avoids configuring permissions on each subscription individually, minimizing overhead.
2
Determine the appropriate security principal.
Create a Microsoft Entra ID security group containing the auditors, rather than assigning roles directly to individuals.
Group-based assignment ensures scalability and simplifies user onboarding and offboarding.
3
Select the correct role matching the requirements.
Assign the Reader role.
The Reader role allows users to view resource configurations but prevents modifications, satisfying the least privilege requirement.

Anahtar Kavram

Azure RBAC Inheritance and Group-based Access Control
Tahmini Süre:1m 0s
Soru 77Soru

AuraPharma Group has an on-premises Active Directory Domain Services (AD DS) forest named corp.aurapharma.com and two Microsoft Entra ID tenants: aurapharma.com (primary tenant) and auraresearch.com (research division tenant). You are designing a hybrid and multi-tenant identity solution to meet the following requirements:

* Users in the on-premises forest must authenticate to Azure resources using their local credentials.
* In the event of an on-premises network or domain controller outage, users must still be able to sign in to cloud applications.
* Users must be able to change their passwords in Microsoft Entra ID and have those changes apply immediately to the on-premises AD DS.
* To prevent administrative lockout under extreme conditions, emergency break-glass accounts must bypass Multi-Factor Authentication (MFA).
* Research division users must be able to access line-of-business applications registered in the primary tenant without registering new credentials, while using their own tenant's MFA state.

Which hybrid identity and access design should you recommend?

Cevabı ve açıklamayı göster

Cevap: Configure Microsoft Entra Connect to use Password Hash Synchronization (PHS) with seamless single sign-on (SSO), and enable password writeback. In the primary tenant, configure cross-tenant access settings to trust MFA from the research tenant. Create a Conditional Access policy requiring MFA for all users, excluding the designated emergency access accounts.

Cevap

Configure Microsoft Entra Connect to use Password Hash Synchronization (PHS) with seamless single sign-on (SSO), and enable password writeback. In the primary tenant, configure cross-tenant access settings to trust MFA from the research tenant. Create a Conditional Access policy requiring MFA for all users, excluding the designated emergency access accounts.
The correct option implements Password Hash Synchronization (PHS), which satisfies the business continuity requirement by allowing users to log in directly to cloud apps when on-premises systems are offline. It enables password writeback to support self-service password reset (SSPR) from Microsoft Entra ID back to the local AD DS. For multi-tenant collaboration, configuring cross-tenant access settings to trust MFA from the research tenant enables B2B collaboration without requiring users to register MFA twice. Finally, excluding the emergency break-glass account from the Conditional Access MFA policy protects the tenant from total administrative lockout.

Adım Adım Çözüm

1
Determine the synchronization and authentication method that provides business continuity during on-premises outages.
Password Hash Synchronization (PHS) is selected because authentication is performed entirely within Microsoft Entra ID, ensuring user access is maintained even when on-premises domain controllers or network links are offline.
Alternative methods like Pass-through Authentication (PTA) or Active Directory Federation Services (AD FS) rely on on-premises infrastructure for the authentication request path, meaning an outage will prevent cloud logins.
2
Configure self-service password reset capabilities.
Enable password writeback in Microsoft Entra Connect.
Password writeback is required to allow users who reset or change their password in the cloud to have that change written back to the on-premises Active Directory Domain Services immediately.
3
Configure secure and seamless cross-tenant collaboration.
Set up Microsoft Entra B2B collaboration and configure cross-tenant access settings in the primary tenant to trust Multi-Factor Authentication (MFA) from the research division tenant.
This allows research division users to authenticate using their home tenant's credentials and MFA status, preventing double prompt overhead and avoiding additional administrative setup.
4
Configure Conditional Access rules and emergency access.
Define a Conditional Access policy requiring MFA for all users, but explicitly exclude the break-glass/emergency access administrator accounts.
Excluding emergency accounts prevents administrative tenant lockout if external MFA mechanisms fail or are inaccessible.

Anahtar Kavram

Designing a resilient, secure hybrid identity and multi-tenant collaboration architecture using Microsoft Entra Connect and cross-tenant access settings.
Tahmini Süre:3m 0s
Soru 78Soru

NovaSpire Logistics is designing an Azure governance solution. The compliance team outlines the following security requirements:
1. All Azure virtual machines must automatically have the Azure Monitor Agent installed upon deployment without manual intervention.
2. Any attempt to deploy an Azure Storage Account that does not enforce secure transit (HTTPS) must be blocked immediately.

Which two Azure Policy effects should you recommend to implement these requirements?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: DeployIfNotExists to remediate virtual machines that do not have the Azure Monitor Agent installed; Deny to block the deployment of storage accounts that do not require HTTPS

Cevap

DeployIfNotExists to remediate virtual machines that do not have the Azure Monitor Agent installed, and Deny to block the deployment of storage accounts that do not require HTTPS.
DeployIfNotExists allows automatic remediation by deploying the Azure Monitor Agent extension if the virtual machine does not have it, which meets the requirement of installing the agent without manual intervention. Deny evaluates the storage account deployment request and immediately blocks the creation if secure transit is not enforced, fulfilling the second requirement.

Adım Adım Çözüm

1
Analyze the first requirement which requires the automatic installation of the Azure Monitor Agent.
This requires deploying a VM extension resource when the primary VM resource is created.
Since the requirement demands deploying a nested resource (extension) if it is missing, DeployIfNotExists is the appropriate effect.
2
Analyze the second requirement which demands blocking storage accounts that do not enforce secure transit.
This requires preventing the creation of the resource entirely if it fails validation.
The Deny effect is designed to block requests that match the policy rules, fulfilling the blocking requirement.

Anahtar Kavram

Azure Policy effects validation and remediation strategies
Tahmini Süre:1m 30s
Soru 79Soru

An enterprise has Azure workloads deployed in the Australia East and Japan East regions. You are designing a monitoring and log routing solution that must satisfy the following requirements:

* Data Sovereignty: All diagnostic and activity logs generated by resources in Australia East must remain stored within Australia. All logs generated in Japan East must remain stored within Japan.
* Central Security Operations: A global security team based in the United States must have a unified, real-time interface to run security analytics and threat-hunting queries using Microsoft Sentinel across all regional logs.
* Operational Access: Regional operations teams must only access diagnostic logs and performance metrics for the resources they manage within their respective regions.
* Governance and Security: Access controls must follow the principle of least privilege and be managed at scale using security groups.

Which log routing and workspace architecture should you recommend?

Cevabı ve açıklamayı göster

Cevap: Deploy a Log Analytics workspace in Australia East and another in Japan East, enabling Microsoft Sentinel on both workspaces. Configure diagnostic settings to route regional logs to their respective local workspaces. Grant the global security team permissions to run cross-workspace queries. Assign the regional operations teams to Microsoft Entra ID groups and assign these groups the Reader role at the resource group scope to enable resource-context log access.

Cevap

Deploy regional Log Analytics workspaces in Australia East and Japan East with Microsoft Sentinel enabled on both, route logs locally, configure cross-workspace queries for the global security team, and use Microsoft Entra ID groups with resource-context RBAC for regional operations teams.
The correct solution deploys two separate regional Log Analytics workspaces (in Australia East and Japan East) to enforce regional data residency constraints. Microsoft Sentinel is enabled on both regional workspaces to allow the US-based security team to run cross-workspace queries, securing a single pane of glass without migrating the actual log data out of its region of origin. Finally, it uses Entra ID groups mapped to resource group scopes, allowing regional operations teams to view logs of resources they own using resource-context access without giving them access to other resources or the workspace itself.

Adım Adım Çözüm

1
Evaluate data sovereignty constraints.
Logs must remain within their originating regions (Australia East and Japan East). This rules out centralizing all raw log storage in a single US-based Log Analytics workspace.
To satisfy regional compliance, separate regional Log Analytics workspaces must be deployed in Australia East and Japan East.
2
Address central security monitoring requirements.
Enable Microsoft Sentinel on both regional workspaces and grant the global security team access to run cross-workspace queries.
Microsoft Sentinel allows querying across multiple workspaces. This allows the security team in the US to perform unified threat hunting while the raw logs remain resident in their respective regions.
3
Configure operational access control.
Assign the regional operations teams to Microsoft Entra security groups and assign those groups the Reader role at the resource group level.
Using group-based assignments instead of direct user assignments follows administrative best practices. Granting permissions at the resource group level enables resource-context log access, allowing operators to query logs of their resources without seeing all workspace data.

Anahtar Kavram

Designing a compliant log routing architecture that balances regional data residency, centralized SIEM visibility, and resource-context RBAC governance.
Soru 80Soru

Vespera Financial Services has an on-premises Active Directory Domain Services (AD DS) forest named corp.vesperafin.com containing 14,200 user accounts. The company is designing a hybrid identity solution to integrate with a new Microsoft Entra ID tenant.

The solution must meet the following requirements:
- Users must sign in to cloud services using their on-premises passwords.
- Remote users must be able to authenticate to cloud services even during an extended internet outage at the corporate offices.
- Users on domain-joined devices within the corporate network must experience automatic sign-in without credential prompts or redirections to on-premises login pages.
- Users must be able to reset their passwords using Microsoft Entra Self-Service Password Reset (SSPR), with the changes synchronized on-premises in near real-time.
- On-premises infrastructure footprint and management overhead must be minimized.

Which hybrid identity and authentication configuration should you recommend?

Cevabı ve açıklamayı göster

Cevap: Configure Password Hash Synchronization (PHS) as the authentication method, enable Seamless Single Sign-On (Seamless SSO), and enable password writeback in Microsoft Entra Connect.

Cevap

Configure Password Hash Synchronization (PHS) as the authentication method, enable Seamless Single Sign-On (Seamless SSO), and enable password writeback in Microsoft Entra Connect.
The correct configuration uses Password Hash Synchronization (PHS) for authentication, which copies password hashes to Microsoft Entra ID. This enables cloud services to authenticate users directly, satisfying the business continuity requirement during on-premises outages. Combined with Seamless SSO, it allows domain-joined corporate devices to authenticate automatically without credential prompts. Enabling password writeback ensures that any password resets performed via Microsoft Entra SSPR are immediately synchronized back to the on-premises Active Directory Domain Services (AD DS).

Adım Adım Çözüm

1
Evaluate the business continuity and outage resilience requirements.
Identify that authentication must occur in the cloud without depending on on-premises connectivity, which eliminates Pass-through Authentication (PTA) and Active Directory Federation Services (AD FS) as they require real-time on-premises validation.
Password Hash Synchronization (PHS) is the only method where Microsoft Entra ID performs authentication independently using cached hashes.
2
Address the single sign-on requirements and infrastructure overhead constraints.
Determine that Seamless SSO combined with PHS satisfies automatic sign-in for domain-joined corporate devices without the high management overhead of AD FS.
Seamless SSO utilizes a lightweight Kerberos-based mechanism, avoiding the need for dedicated AD FS and Web Application Proxy servers.
3
Verify self-service password reset requirements.
Confirm that password writeback must be enabled in Microsoft Entra Connect to ensure cloud-initiated resets sync back to the on-premises Active Directory Domain Services.
Without password writeback enabled, SSPR changes would remain cloud-only, causing credential mismatches with the on-premises environment.

Anahtar Kavram

Selecting the optimal hybrid identity authentication method (PHS vs. PTA vs. AD FS) based on business continuity, SSO requirements, and infrastructure complexity.
Tahmini Süre:2m 0s
ÖncekiSayfa 4 / 60Sonraki