Azure / azure-dev

A developer CLI that reduces the time it takes for you to get started on Azure. The Azure Developer CLI (azd) provides a set of developer-friendly commands that map to key stages in your workflow - code, build, deploy, monitor, repeat.
https://aka.ms/azd
MIT License
388 stars 177 forks source link

[feat] Support for Pwsh FunctionApp deployment #2461

Open Gordonby opened 1 year ago

Gordonby commented 1 year ago

Scenario Azure Functions support Powershell Core Functions, I've written one in an azd compatible template here: https://github.com/Gordonby/functionapp-pwsh-azcli

Actual image

Expected I'd like my Pwsh function app code to be deployed to the function app.

I can see that it's not currently supported from the schema

                    "language": {
                        "type": "string",
                        "title": "Service implementation language",
                        "enum": [
                            "dotnet",
                            "csharp",
                            "fsharp",
                            "py",
                            "python",
                            "js",
                            "ts",
                            "java"
                        ]
                    },
jongio commented 1 year ago

@Gordonby - Is this a feature that you'd be willing to contrib?

ellismg commented 1 year ago

@Gordonby, FYI, I can't seem to access https://github.com/Gordonby/functionapp-pwsh-azcli. Is it private?

Gordonby commented 1 year ago

@Gordonby, FYI, I can't seem to access https://github.com/Gordonby/functionapp-pwsh-azcli. Is it private?

Oops.. It was.
I've made it public.

xaviermignot commented 6 months ago

Hello, I would also like to deploy my code to pwsh Functions using azd. Has anyone had the time to contribute to this feature over the last few months ?