How do I edit a read-only Azure Function App?

Dan Miller 1 Reputation point
2021-01-19T16:05:39.447+00:00

58178-image.png

Need to work on something left by another colleague, but I can't seem to edit it in the portal, and it's not obvious to me how to do it another way.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,680 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Andriy Bilous 11,176 Reputation points MVP
    2021-01-19T20:12:03.23+00:00

    Hello @Dan Miller
    When you publish an app to Azure Function using Visual Studio or any CI/CD tool like Azure DevOps, your app is compiled(dll file) and packed into zip file, also becomes read-only to make sure that you don't attempt to modify it via Portal editing.

    If you need to update your app, open code of the app in Visual Studio, make changes and publish it again.

    1 person found this answer helpful.
    0 comments No comments

  2. jga 1 Reputation point
    2022-11-03T08:45:25.307+00:00

    Hi @Andriy Bilous , you mean to download the .zip and change the code and after that upload it on Azure, don't you?. I have the same problem, I've got Azure Exentisn on VSC but I can't edit the code. However I can dowload the zip from Azure and change the code, but what I can't do is to change te code from the Azure extension. I'm confused!. Do I need a special persmision to upload the code from VSC?

    0 comments No comments