SC-200 • Practice Test 45
Free SC-200 practice test — 15 questions with explanations. Set 45. No signup required.
Refer to the exhibit. You are deploying a Microsoft Sentinel workspace using an ARM template. After deployment, you notice the workspace is in a disabled state for ingesting data. Which parameter is most likely causing this?
Refer to the exhibit.
```json
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"workspaceName": {
"value": "SentinelWorkspace"
},
"location": {
"value": "eastus"
},
"sku": {
"value": "PerGB2018"
},
"retentionInDays": {
"value": 90
},
"dataRetentionForDailyQuotaInGB": {
"value": 5
},
"dailyQuotaInGB": {
"value": 10
}
}
}
```