-
Notifications
You must be signed in to change notification settings - Fork 24
/
azuredeploy.json
38 lines (38 loc) · 1.1 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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "string"
},
"repositoryUrl": {
"type": "string"
},
"repositoryToken": {
"type": "securestring"
}
},
"resources": [
{
"apiVersion": "2019-12-01-preview",
"name": "[parameters('name')]",
"type": "Microsoft.Web/staticSites",
"location": "[resourceGroup().location]",
"tags": {},
"properties": {
"repositoryUrl": "[parameters('repositoryUrl')]",
"repositoryToken": "[parameters('repositoryToken')]",
"branch": "main",
"buildProperties": {
"appLocation": "app",
"apiLocation": "api",
"appArtifactLocation": "build"
}
},
"sku": {
"Tier": "Free",
"Name": "Free"
}
}
]
}