-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccelerator.json
More file actions
54 lines (54 loc) · 1.18 KB
/
accelerator.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "Nodejs Azure function app accelerator",
"description": "An accelerator to deploy a NodeJs Azure function app",
"tags": [
"nodejs",
"azure",
"functionapp"
],
"inputs": {
"placeHolders": [
{
"name": "RESOURCE_GROUP",
"description": "Resource group name"
},
{
"name": "RESOURCE_GROUP_LOCATION",
"description": "Resource group location",
"value": "eastus"
},
{
"name": "FUNCTION_APP_NAME",
"description": "Name of the function app to be created"
},
{
"name": "RUN_TIME",
"description": "Runtime stack of the app",
"value": "node"
},
{
"name": "APP_INSIGHTS_LOCATION",
"description": "Location of app insights",
"value": "eastus"
}
]
},
"settings": [
{
"name": "vulnerability_alerts",
"value": "enabled"
}
],
"startupWorkflows" : [
{
"path": ".github/workflows/provisionResources.yml",
"name": "provisionResources.yml",
"ref": "main"
},
{
"path": ".github/workflows/deploy.yml",
"name": "deploy.yml",
"ref": "main"
}
]
}