-
Notifications
You must be signed in to change notification settings - Fork 17
/
azure.yaml
78 lines (77 loc) · 2.44 KB
/
azure.yaml
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: app-templates-eshop-on-paas
infra:
provider: "bicep"
path: "infra"
module: "main"
services:
accounting:
resourceName: "accounting-service"
project: "./src/RedDog.AccountingService"
host: "containerapp"
module: "./modules/containerApps/accounting.bicep"
docker:
path: "./Dockerfile"
context: "../"
bootstrapper:
resourceName: "bootstrapper"
project: "./src/RedDog.Bootstrapper"
host: "containerapp"
module: "./modules/containerApps/bootstrapper.bicep"
docker:
path: "./Dockerfile"
context: "../"
loyalty:
resourceName: "loyalty-service"
project: "./src/RedDog.LoyaltyService"
host: "containerapp"
module: "./modules/containerApps/loyalty.bicep"
docker:
path: "./Dockerfile"
context: "../"
makeline:
resourceName: "make-line"
project: "./src/RedDog.MakeLineService"
host: "containerapp"
module: "./modules/containerApps/makeline.bicep"
docker:
path: "./Dockerfile"
context: "../"
order:
resourceName: "app-order-reddog-d64f964"
project: "./src/RedDog.OrderService"
host: "containerapp"
module: "./modules/containerApps/order.bicep"
docker:
path: "./Dockerfile"
context: "../"
receipt:
resourceName: "receipt-service"
project: "./src/RedDog.ReceiptGenerationService"
host: "containerapp"
module: "./modules/containerApps/receipt.bicep"
docker:
path: "./Dockerfile"
context: "../"
ui:
resourceName: "app-ui-reddog-d64f964"
project: "./src/RedDog.UI"
host: "appservice"
docker:
path: "./Dockerfile"
context: "../"
virtualCustomer:
resourceName: "app-vc-reddog-d64f964"
project: "./src/RedDog.VirtualCustomer"
host: "function"
docker:
path: "./Dockerfile"
context: "../"
virtualWorker:
resourceName: "virtual-worker"
project: "./src/RedDog.VirtualWorker"
host: "containerapp"
module: "./modules/containerApps/virtualworker.bicep"
docker:
path: "./Dockerfile"
context: "../"