79117627

Date: 2024-10-23 11:03:48
Score: 1
Natty:
Report link

There is a github action step for setting config settings

https://github.com/Azure/appservice-settings

- uses: azure/login@v1
  with:
    creds: '${{ secrets.AZURE_CREDENTIALS }}'


- name: Azure App Service Settings
  uses: Azure/appservice-settings@v1
  with:
    app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
    app-settings-json: |
    [
       {
          "name": "appSetting1",
          "value": "${{ vars.APP_SETTING_1 }}"",
          "slotSetting": false
        }
    ]
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon H