-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathazuredeploy.json
More file actions
166 lines (166 loc) · 5.69 KB
/
azuredeploy.json
File metadata and controls
166 lines (166 loc) · 5.69 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"siteName": {
"type": "string",
"defaultValue": "EDUGraphAPI",
"metadata": {
"description": "The name of the web client app that you wish to create."
}
},
"hostingPlanName": {
"type": "string",
"defaultValue": "EDUGraphAPI",
"metadata": {
"description": "The hosting service plan name that you wish to create."
}
},
"sourceCodeRepositoryURL": {
"type": "string",
"defaultValue": "https://github.com/<YOUR REPOSITORY>/EDUGraphAPI",
"metadata": {
"description": "Source code repository URL"
}
},
"sourceCodeBranch": {
"type": "string",
"defaultValue": "master",
"metadata": {
"description": "Sourcecode Repo branch"
}
},
"sourceCodeManualIntegration": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "Use 'true' if you are deploying from the base repo, 'false' if you are deploying from your own fork. If you're using 'false', make sure you have admin permissions to the repo. If you get an error, you should add GitHub integration to another web app manually, so that you get a GitHub access token associated with your Azure Subscription."
}
},
"clientId": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": ""
}
},
"clientSecret": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": ""
}
}
},
"variables": {
"location": "[resourceGroup().location]",
"lowerSiteName": "[toLower(parameters('siteName'))]",
"storageAccountName": "[variables('lowerSiteName')]",
"webSiteName": "[variables('lowerSiteName')]"
},
"resources": [
{
"type": "Microsoft.Web/serverfarms",
"sku": {
"name": "B1",
"tier": "Basic",
"size": "B1",
"family": "B",
"capacity": 1
},
"name": "[parameters('hostingPlanName')]",
"apiVersion": "2015-08-01",
"location": "[variables('location')]",
"properties": {
"name": "[parameters('hostingPlanName')]",
"numberOfWorkers": 1
}
},
{
"type": "Microsoft.Storage/storageAccounts",
"sku": {
"name": "Standard_RAGRS",
"tier": "Standard"
},
"kind": "Storage",
"name": "[variables('storageAccountName')]",
"apiVersion": "2016-01-01",
"location": "[variables('location')]"
},
{
"type": "Microsoft.Web/sites",
"name": "[variables('webSiteName')]",
"apiVersion": "2015-08-01",
"location": "[variables('location')]",
"properties": {
"name": "[variables('webSiteName')]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]",
"siteConfig": {
"AlwaysOn": true
}
},
"resources": [
{
"apiVersion": "2015-08-01",
"type": "config",
"name": "appsettings",
"dependsOn": [
"[resourceId('Microsoft.Web/sites/', variables('webSiteName'))]"
],
"properties": {
"ida:ClientId": "[parameters('clientId')]",
"ida:ClientSecret": "[parameters('clientSecret')]",
"CertPath": "EduGraphAPI App Only Cert.pfx",
"CertPassword": "J48W23RQeZv85vj",
"SourceCodeRepositoryUrl": "[parameters('SourceCodeRepositoryUrl')]",
"project": "src/EDUGraphAPI.Web/EDUGraphAPI.Web.csproj"
}
},
{
"apiVersion": "2015-08-01",
"type": "config",
"name": "connectionstrings",
"dependsOn": [
"[concat('Microsoft.Web/sites/', variables('webSiteName'))]"
],
"properties": {
"DefaultConnection": {
"value": "Data Source=|DataDirectory|EDUGraphAPI.sdf",
"type": "Custom"
},
"SyncDataWebJobDefaultConnection": {
"value": "Data Source=D:\\home\\site\\wwwroot\\App_Data\\EDUGraphAPI.sdf",
"type": "Custom"
},
"AzureWebJobsStorage": {
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2015-05-01-preview').key1,';')]",
"type": "Custom"
},
"AzureWebJobsDashboard": {
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2015-05-01-preview').key1,';')]",
"type": "Custom"
}
}
},
{
"apiVersion": "2015-08-01",
"name": "web",
"type": "sourcecontrols",
"dependsOn": [
"[resourceId('Microsoft.Web/sites/', variables('webSiteName'))]",
"[resourceId('Microsoft.Web/Sites/config', variables('webSiteName'), 'appsettings')]",
"[resourceId('Microsoft.Web/Sites/config', variables('webSiteName'), 'connectionstrings')]"
],
"properties": {
"RepoUrl": "[parameters('sourceCodeRepositoryURL')]",
"branch": "[parameters('sourceCodeBranch')]",
"IsManualIntegration": "parameters('sourceCodeManualIntegration')]"
}
}
],
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
]
}
]
}