We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2df9d3 commit b0702e3Copy full SHA for b0702e3
infra/main.bicep
@@ -336,10 +336,6 @@ resource containerApp 'Microsoft.App/containerApps@2024-03-01' = {
336
name: 'AZURE_OPENAI_ENDPOINT'
337
value: replace(aiServices.properties.endpoint, 'cognitiveservices.azure.com', 'openai.azure.com')
338
}
339
- {
340
- name: 'AUTH_ENABLED'
341
- value: false
342
- }
343
{
344
name: 'AZURE_OPENAI_MODEL_NAME'
345
value: gptModelVersion
@@ -431,6 +427,10 @@ resource frontendAppService 'Microsoft.Web/sites@2021-02-01' = {
431
427
name: 'BACKEND_API_URL'
432
428
value: 'https://${containerApp.properties.configuration.ingress.fqdn}'
433
429
430
+ {
+ name: 'AUTH_ENABLED'
+ value: 'false'
+ }
434
]
435
436
0 commit comments