This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// **************************************** | |
// 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)}' |