-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaca.bicep
89 lines (83 loc) · 1.88 KB
/
aca.bicep
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
param location string = 'eastus2'
param name string = 'terminalchatserver'
param containerPort int = 80
param useExternalIngress bool = false
param containerImage string
param envVars array = []
resource law 'Microsoft.OperationalInsights/workspaces@2020-03-01-preview' = {
name: name
location: location
properties: any({
retentionInDays: 30
features: {
searchVersion: 1
}
sku: {
name: 'PerGB2018'
}
})
}
resource env 'Microsoft.App/managedEnvironments@2022-03-01' = {
name: name
location: location
properties: {
appLogsConfiguration: {
destination: 'log-analytics'
logAnalyticsConfiguration: {
customerId: law.properties.customerId
sharedKey: law.listKeys().primarySharedKey
}
}
}
}
resource containerApp 'Microsoft.App/containerApps@2022-03-01' = {
name: name
location: location
properties: {
managedEnvironmentId: env.id
configuration: {
ingress: {
external: useExternalIngress
targetPort: containerPort
transport: 'http2'
}
}
template: {
containers: [
{
image: containerImage
name: name
env: envVars
}
]
}
}
}
output fqdn string = containerApp.properties.configuration.ingress.fqdn
// resource containerApp 'Microsoft.Web/containerApps@2021-03-01' = {
// name: name
// kind: 'containerapp'
// location: location
// properties: {
// kubeEnvironmentId: containerAppEnvironmentId
// configuration: {
// ingress: {
// external: useExternalIngress
// targetPort: containerPort
// transport: 'http2'
// }
// }
// template: {
// containers: [
// {
// image: containerImage
// name: name
// env: envVars
// }
// ]
// scale: {
// minReplicas: 0
// }
// }
// }
// }