File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"template" : " https://github.com/Azure-Samples/Azure-Python-Standardization-Template-Generator" ,
3
- "commit" : " 071985944385a0faa5d5510469b94eac92339d1f " ,
3
+ "commit" : " a8bbfb5f41e1b73129167cd91c50671ad604e206 " ,
4
4
"checkout" : null ,
5
5
"context" : {
6
6
"cookiecutter" : {
Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ param runtimeName string
17
17
param runtimeNameAndVersion string = '${runtimeName }|${runtimeVersion }'
18
18
param runtimeVersion string
19
19
20
- param enableDiagnosticLogging bool = true
21
-
22
20
// Microsoft.Web/sites Properties
23
21
param kind string = 'app,linux'
24
22
@@ -61,9 +59,9 @@ resource appService 'Microsoft.Web/sites@2022-03-01' = {
61
59
allowedOrigins : union ([ 'https://portal.azure.com' , 'https://ms.portal.azure.com' ], allowedOrigins )
62
60
}
63
61
// Diagnostic logging
64
- detailedErrorLoggingEnabled : enableDiagnosticLogging
65
- httpLoggingEnabled : enableDiagnosticLogging
66
- requestTracingEnabled : enableDiagnosticLogging
62
+ detailedErrorLoggingEnabled : true
63
+ httpLoggingEnabled : true
64
+ requestTracingEnabled : true
67
65
}
68
66
clientAffinityEnabled : clientAffinityEnabled
69
67
httpsOnly : true
You can’t perform that action at this time.
0 commit comments