-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.bicep
127 lines (123 loc) · 3.16 KB
/
main.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
param location string
param containerImage string
param azureNamePrefix string
param keyVaultName string
param appRegistrationId string
param appRegistrationClientSecret string
param tenantId string
param allowedGroupId string
resource keyVault 'Microsoft.KeyVault/vaults@2021-06-01-preview' existing = {
name: keyVaultName
}
resource keyVaultAccessPolicy 'Microsoft.KeyVault/vaults/accessPolicies@2022-07-01' = {
name: '${keyVaultName}/add'
properties: {
accessPolicies: [
{
objectId: containerApp.identity.principalId
tenantId: subscription().tenantId
permissions: {
secrets: [
'get'
'list'
]
}
}
]
}
}
resource containerApp 'Microsoft.App/containerApps@2023-05-01' = {
name: '${azureNamePrefix}-dashboard'
location: location
identity: {
type: 'SystemAssigned'
}
properties: {
environmentId: resourceId('Microsoft.App/managedEnvironments', '${azureNamePrefix}-env')
configuration: {
ingress: {
external: true
targetPort: 2526
allowInsecure: false
}
secrets: [
{
name: 'correspondence-migration-connection-string'
keyVaultUrl: '${keyVault.properties.vaultUri}secrets/correspondence-migration-connection-string'
identity: 'System'
}
{
name: 'app-registration-client-secret'
value: appRegistrationClientSecret
}
]
}
template: {
containers: [
{
name: 'dashboard'
image: containerImage
env: [
{
name: 'DatabaseOptions__ConnectionString'
secretRef: 'correspondence-migration-connection-string'
}
]
}
]
scale: {
minReplicas: 1
maxReplicas: 1
}
}
}
}
// Configure authentication for Container App
resource containerAppAuth 'Microsoft.App/containerApps/authConfigs@2023-05-01' = {
name: 'current'
parent: containerApp
properties: {
platform: {
enabled: true
}
identityProviders: {
azureActiveDirectory: {
enabled: true
login: {
disableWWWAuthenticate: false
}
registration: {
clientId: appRegistrationId
clientSecretSettingName: 'app-registration-client-secret'
openIdIssuer: 'https://sts.windows.net/${tenantId}/'
}
validation: {
allowedAudiences: [
'api://${appRegistrationId}'
]
defaultAuthorizationPolicy: {
allowedPrincipals: {
groups: [
allowedGroupId
]
identities: [
allowedGroupId
]
}
allowedApplications: [
'${appRegistrationId}'
]
}
jwtClaimChecks: {
allowedClientApplications: [
'${appRegistrationId}'
]
allowedGroups: [
allowedGroupId
]
}
}
}
}
}
}