Skip to content

Instantly share code, notes, and snippets.

View pinakighatak's full-sized avatar
👨‍💻
Working from home

Pinaki Ghatak pinakighatak

👨‍💻
Working from home
View GitHub Profile
@pinakighatak
pinakighatak / AzFunctionsDeploy.bicep
Created March 21, 2022 20:10
Azure Functions Deployment with Bicep
// ****************************************
// Azure Bicep main template
// This bicep template demonstrates provisioning Azure function that implements OpenAPI specifications.
// Optinally this Azure Function endp-point can be published to an existing API Management - witin a Product
// Last Update : 17-Feb-2022
// ****************************************
targetScope = 'resourceGroup'
param functionRuntime string = 'dotnet'
param logAnalyticsWorkspaceName string = 'la-${uniqueString(resourceGroup().id)}'