-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployable_apps_config.tf
51 lines (48 loc) · 1.25 KB
/
deployable_apps_config.tf
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
locals {
deployable_apps = [
{
name = "api"
repo = "abc/abc-api"
src_project_directory = "src/API"
service_plan_name = "api"
app_config_name = "main"
type = "appservice"
stack = "dotnet"
isPublic = true
app_settings = {}
},
{
name = "abc-func"
repo = "abc/abc-function"
src_project_directory = "src/Functions"
service_plan_name = "functions"
app_config_name = "main"
type = "function"
stack = "node"
isPublic = false
app_settings = {}
},
]
nugets = [
{
name = "sdk"
repo = "abc/abc-sdk"
src_project_directory = "src/Sdk"
}
]
app_configs = [
{
key = "CustomConfig:ConfigName"
value = "pre-configured-value"
app_config_name = "main"
},
]
containers = [
{
name = "sample"
repo = "abc/sample"
src_project_directory = "src/Jobs"
image_name = "sample"
}
]
}