serverless / serverless-azure-functions

Serverless Azure Functions Plugin – Add Azure Functions support to the Serverless Framework
MIT License
266 stars 162 forks source link

Allow functions to declare their exclusive runtime #509

Open verikono opened 3 years ago

verikono commented 3 years ago

Hi!

The following document which describes how to allocate a runtime on a function by function basis when using AWS doesn't appear to be effective for serverless-azure-functions. Should it be?

https://www.serverless.com/blog/building-mutliple-runtimes

Rapol commented 3 years ago

It seems that azure removed the ability to have multiple languages in one function app with their v2 function core runtime.

https://github.com/Azure/app-service-announcements/issues/129

Function App can only have functions of a selected language.

I dont think this will be implemented in this plugin. You will need to create a serverless configuration for each different language that you need.

verikono commented 3 years ago

Thank you very much for that.