skip to Main Content

How can I get Azure Functions keys from Bicep

I have the following code to create an Azure Function App with Bicep lang resource webSite 'Microsoft.Web/sites@2022-03-01' = { name: 'xxxxxx' location: resourceGroup().location kind: 'functionapp' properties: { serverFarmId: 'zzzzzz' siteConfig: { appSettings: [ // some values ] } } }…

VIEW QUESTION
Back To Top
Search