Skip to content

Deploying Python Function Apps through Bicep #5833

Answered by brwilkinson
Zerthick asked this question in Q&A
Discussion options

You must be logged in to vote

Bicep is great for creating Azure Resource Types, which are known as Resource Providers. E,g, such as a ServerFarm (App Service Plan) or a Website (App Service).

resource FARM 'Microsoft.Web/serverfarms@2021-02-01' existing = {
...
}

resource WS 'Microsoft.Web/sites@2021-01-01' = {
...
}

These are pre-requisite to deploying Applications or in this case WebSite Content AKA your Function app, which includes those files that you referenced.

I would recommend:

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@Zerthick
Comment options

@kevball2
Comment options

@Zerthick
Comment options

@brwilkinson
Comment options

Answer selected by Zerthick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants