Commit eab8b8f 1 parent accefc2 commit eab8b8f Copy full SHA for eab8b8f
File tree 1 file changed +17
-3
lines changed
.azure/applications/dashboard
1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,9 @@ resource containerAppAuth 'Microsoft.App/containerApps/authConfigs@2023-05-01' =
87
87
identityProviders : {
88
88
azureActiveDirectory : {
89
89
enabled : true
90
+ login : {
91
+ disableWWWAuthenticate : false
92
+ }
90
93
registration : {
91
94
clientId : appRegistrationId
92
95
clientSecretSettingName : 'app-registration-client-secret'
@@ -101,13 +104,24 @@ resource containerAppAuth 'Microsoft.App/containerApps/authConfigs@2023-05-01' =
101
104
groups : [
102
105
allowedGroupId
103
106
]
107
+ identities : [
108
+ allowedGroupId
109
+ ]
104
110
}
111
+ allowedApplications : [
112
+ '${appRegistrationId }'
113
+ ]
114
+ }
115
+ jwtClaimChecks : {
116
+ allowedClientApplications : [
117
+ '${appRegistrationId }'
118
+ ]
119
+ allowedGroups : [
120
+ allowedGroupId
121
+ ]
105
122
}
106
123
}
107
124
}
108
125
}
109
- globalValidation : {
110
- unauthenticatedClientAction : 'RedirectToLoginPage'
111
- }
112
126
}
113
127
}
You can’t perform that action at this time.
0 commit comments