SC-200 Manage a security operations environment • Set 33
SC-200 Manage a security operations environment Practice Test 33 — 15 questions with explanations. Free, no signup.
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
}
}
}
```