-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathazuredeploy.json
88 lines (88 loc) · 3.06 KB
/
azuredeploy.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "String",
"defaultValue": "[resourceGroup().location]"
},
"dataFactoryName": {
"type": "String"
},
"keyVaultName": {
"type": "string"
},
"storageAccountName": {
"type": "string"
},
"keyVaultWriterPrincipalId": {
"type": "string"
}
},
"resources": [
{
"type": "Microsoft.DataFactory/factories",
"name": "[parameters('dataFactoryName')]",
"apiVersion": "2018-06-01",
"location": "[parameters('location')]",
"identity": {
"type": "SystemAssigned"
}
},
{
"apiVersion": "2016-10-01",
"name": "[parameters('keyVaultName')]",
"location": "[parameters('location')]",
"type": "Microsoft.KeyVault/vaults",
"properties": {
"accessPolicies": [
{
"objectId": "[parameters('keyVaultWriterPrincipalId')]",
"tenantId": "[reference(concat('Microsoft.DataFactory/factories/', parameters('dataFactoryName')), '2018-06-01', 'Full').identity.tenantId]",
"permissions": {
"secrets": [
"Get",
"List",
"Set",
"Delete"
]
}
},
{
"objectId": "[reference(concat('Microsoft.DataFactory/factories/', parameters('dataFactoryName')), '2018-06-01', 'Full').identity.principalId]",
"tenantId": "[reference(concat('Microsoft.DataFactory/factories/', parameters('dataFactoryName')), '2018-06-01', 'Full').identity.tenantId]",
"permissions": {
"secrets": [
"Get",
"List"
]
},
"applicationId": null
}
],
"tenantId": "[reference(concat('Microsoft.DataFactory/factories/', parameters('dataFactoryName')), '2018-06-01', 'Full').identity.tenantId]",
"sku": {
"name": "standard",
"family": "A"
}
}
},
{
"name": "[parameters('storageAccountName')]",
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2018-07-01",
"location": "[parameters('location')]",
"properties": {
"accessTier": "Hot",
"supportsHttpsTrafficOnly": true,
"isHnsEnabled": true
},
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2"
}
],
"outputs": {
}
}