Skip to content

Instantly share code, notes, and snippets.

View JanneMattila's full-sized avatar

Janne Mattila JanneMattila

View GitHub Profile
@shibayan
shibayan / durable-functions.bicep
Created May 3, 2022 08:17
Deploying Durable Functions to Azure Container Apps
param appName string
param location string = resourceGroup().location
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2020-10-01' = {
name: 'log-${appName}'
location: location
properties: {
retentionInDays: 30
sku: {
name: 'PerGB2018'