PL-900 Practice Question: Manage the Microsoft Power Platform environment
Refer to the exhibit.
{"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.PowerPlatform/enterprisePolicies",
"apiVersion": "2021-01-01",
"name": "myDlpPolicy",
"location": "eastus",
"properties": {
"definition": {"$schema": "https://schema.management.azure.com/providers/Microsoft.PowerPlatform/policyDefinitions/2021-01-01/schema.json#",
"rules": [
{
"name": "Block SharePoint",
"action": "Block",
"connectors": ["shared_sharepointonline"
]
}
]
}
}
}
]
}An admin deploys this ARM template to create a DLP policy. After deployment, users report they can still use the SharePoint connector in Power Automate. What is the most likely reason?
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
✓
The resource type should be 'Microsoft.PowerPlatform/dlpPolicies'
The resource type 'Microsoft.PowerPlatform/enterprisePolicies' is used for creating policies, but the API version and properties may not be correct for DLP policies. The correct resource type for DLP policies is 'Microsoft.PowerPlatform/dlpPolicies'. Option B is wrong because the environment might not have the policy applied, but the template attempts to create a policy. Option C is wrong because the policy is created at the tenant level, not per environment. Option D is wrong because the policy name is set correctly.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The resource type should be 'Microsoft.PowerPlatform/dlpPolicies'
Why this is correct
The ARM resource type for DLP policies is different; the template uses an incorrect type.
- ✗
The policy was not applied to the environment where users are working
Why it's wrong here
DLP policies apply to all environments unless scoped.
- ✗
The policy name does not match the connector name
Why it's wrong here
The connector name 'shared_sharepointonline' is correct.
- ✗
The policy is applied at the tenant level and does not affect individual environments
Why it's wrong here
DLP policies affect environments.
Go deeper
Related to this question
About these practice questions
Courseiva writes every PL-900 question from scratch — 904 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This PL-900 practice question is part of Courseiva's free Microsoft 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 PL-900 exam.