Search code examples
pythonazure-functionscloud

How to find the version of an azure Function App?


I want to check what is the python version that my Azure Function App is running.


Solution

  • This can be achieved using azure CLI - az

    1. Install az - https://learn.microsoft.com/en-us/cli/azure/.
    2. Use az login to login to your azure account
    3. Then execute az functionapp show -g [resource_name] --name [Function APP name] | grep linuxFxVersion

    Helpful: You might need to install azure-functions-core-tools