I am deploying an azure webapp with the following settings:
resource functionAppName_web 'Microsoft.Web/sites/config@2021-03-01' = {
parent: functionAppName
name: 'web'
properties: {
http20Enabled: true
use32BitWorkerProcess: false
alwaysOn: false
webSocketsEnabled: false
minTlsVersion: '1.2'
phpVersion: ''
ftpsState: 'Disabled'
windowsFxVersion: 'DOTNETCORE|8.0'
}
}
As a result, the web app deployment shows a proper value in the Properties main section:

But if I navigate to 'Configuration (preview) > Stack settings' it is blank

Does this have any impact in the runtime stack that is selected? Why is this not properly mapped? In theory 'DOTNETCORE|8.0' is the proper value for my .net8 webapp.