Skip to content

App Service Stack settings are empty #6324

Answered by brwilkinson
mattisax asked this question in Q&A
Discussion options

You must be logged in to vote

if you review this doc it shows the php version can be listed ad updated as part of the linuxFxVersion

https://docs.microsoft.com/en-us/azure/app-service/configure-language-php?pivots=platform-linux#show-php-version

here is a sample template that shows how to pass this in

https://github.com/brwilkinson/AzureDeploymentFramework/blob/main/ADF/bicep/x.appService.bicep#L92

resource WS 'Microsoft.Web/sites@2021-01-01' = {
  name: '${Deployment}-${appprefix}${ws.Name}'
  identity: {
    type: 'SystemAssigned, UserAssigned'
    userAssignedIdentities: (contains(MSILookup, ws.NAME) ? userAssignedIdentities[MSILookup[ws.NAME]] : userAssignedIdentities.Default)
  }
  kind: ws.kind
  location: resou…

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
7 replies
@brwilkinson
Comment options

@mattisax
Comment options

@brwilkinson
Comment options

@wedoazure
Comment options

@alex-frankel
Comment options

Answer selected by brwilkinson
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
5 participants
Converted from issue

This discussion was converted from issue #6318 on March 28, 2022 16:28.