-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp-env.bicep
More file actions
28 lines (26 loc) · 942 Bytes
/
app-env.bicep
File metadata and controls
28 lines (26 loc) · 942 Bytes
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
param containerAppsEnvName string
param containerRegistryName string
param location string
param logAnalyticsWorkspaceName string
param applicationInsightsName string
param daprEnabled bool
param vnetInernal bool
param vnetName string
// Container apps host (including container registry)
module containerApps '../core/host/container-apps.bicep' = {
name: 'container-apps'
params: {
name: 'app'
containerAppsEnvironmentName: containerAppsEnvName
containerRegistryName: containerRegistryName
location: location
logAnalyticsWorkspaceName: logAnalyticsWorkspaceName
applicationInsightsName: applicationInsightsName
daprEnabled: daprEnabled
vnetName: vnetName
vnetInternal: vnetInernal
}
}
output environmentName string = containerApps.outputs.environmentName
output registryLoginServer string = containerApps.outputs.registryLoginServer
output registryName string = containerApps.outputs.registryName