diff --git a/{{cookiecutter.__src_folder_name}}/infra/core/host/appservice.bicep b/{{cookiecutter.__src_folder_name}}/infra/core/host/appservice.bicep index 85aac63..b1e7b01 100644 --- a/{{cookiecutter.__src_folder_name}}/infra/core/host/appservice.bicep +++ b/{{cookiecutter.__src_folder_name}}/infra/core/host/appservice.bicep @@ -17,8 +17,6 @@ param runtimeName string param runtimeNameAndVersion string = '${runtimeName}|${runtimeVersion}' param runtimeVersion string -param enableDiagnosticLogging bool = true - // Microsoft.Web/sites Properties param kind string = 'app,linux' @@ -61,9 +59,9 @@ resource appService 'Microsoft.Web/sites@2022-03-01' = { allowedOrigins: union([ 'https://portal.azure.com', 'https://ms.portal.azure.com' ], allowedOrigins) } // Diagnostic logging - detailedErrorLoggingEnabled: enableDiagnosticLogging - httpLoggingEnabled: enableDiagnosticLogging - requestTracingEnabled: enableDiagnosticLogging + detailedErrorLoggingEnabled: true + httpLoggingEnabled: true + requestTracingEnabled: true } clientAffinityEnabled: clientAffinityEnabled httpsOnly: true