DP-203 • Practice Test 39
Free DP-203 practice test — 15 questions with explanations. Set 39. No signup required.
Refer to the exhibit. You deploy the ARM template to create a storage account. After deployment, a developer reports that they cannot access the storage account from an Azure Databricks notebook running in the same virtual network as specified in the subnet rule. What is the most likely reason?
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2023-01-01",
"name": "storagedatalakeprod",
"kind": "StorageV2",
"properties": {
"isHnsEnabled": true,
"encryption": {
"keySource": "Microsoft.Keyvault",
"keyvaultproperties": {
"keyuri": "https://kv-prod.vault.azure.net/keys/datalake-key/abc123"
}
},
"networkAcls": {
"defaultAction": "Deny",
"virtualNetworkRules": [
{
"id": "/subscriptions/.../virtualNetworks/vnet-prod/subnets/subnet-databricks"
}
],
"ipRules": []
}
}
}
]
}