Created
November 4, 2021 14:46
-
-
Save ljtill/192111d6cd9f42cdc08e63e017abc5cc to your computer and use it in GitHub Desktop.
Provides the ability to call Azure Functions to start a workflow
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
// --------- | |
// Resources | |
// --------- | |
resource webhook 'Microsoft.Resources/deployments@2021-04-01' = { | |
name: 'Microsoft.Bicep.Webhook' | |
properties: { | |
mode: 'Incremental' | |
templateLink: { | |
uri: url | |
} | |
} | |
} | |
// --------- | |
// Parameters | |
// --------- | |
param url string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment