最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

azure - Configure Action Group to call Logic App workflow using Bicep - Stack Overflow

programmeradmin1浏览0评论

I am trying to configure an Azure Action Group to call a workflow in a standard Logic App using Bicep.

When I configure the Action Group in the portal, it appears like

ie the value contains {logic app name} / {workflow name} and in the portal JSON, the resourceId is given as /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{logic app name}/workflows/{workflow}

I want to use this in the resourceId of a logicAppReceiver in the action group

logicAppReceivers: [
  {
    name: 'LogicAppReceiverAlerting'
    resourceId: resourceId // <- set this 
    callbackUrl: logicAppCallbackUrl
    useCommonAlertSchema: true
  }]

How do I construct the resource ID of the workflow in this format?

Using

resourceId('Microsoft.Logic/workflows', workflowName)

gives just the workflow ID /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Logic/workflows/{workflow name}

Using

resourceId('Microsoft.Web/sites', logicAppName)

gives just the logic app ID /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{logic app name}

Using

resourceId('Microsoft.Web/sites', logicAppName, workflowName)

is invalid.

I am trying to configure an Azure Action Group to call a workflow in a standard Logic App using Bicep.

When I configure the Action Group in the portal, it appears like

ie the value contains {logic app name} / {workflow name} and in the portal JSON, the resourceId is given as /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{logic app name}/workflows/{workflow}

I want to use this in the resourceId of a logicAppReceiver in the action group

logicAppReceivers: [
  {
    name: 'LogicAppReceiverAlerting'
    resourceId: resourceId // <- set this 
    callbackUrl: logicAppCallbackUrl
    useCommonAlertSchema: true
  }]

How do I construct the resource ID of the workflow in this format?

Using

resourceId('Microsoft.Logic/workflows', workflowName)

gives just the workflow ID /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Logic/workflows/{workflow name}

Using

resourceId('Microsoft.Web/sites', logicAppName)

gives just the logic app ID /subscriptions/{subscription id}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{logic app name}

Using

resourceId('Microsoft.Web/sites', logicAppName, workflowName)

is invalid.

Share Improve this question edited 13 hours ago Thomas 30k6 gold badges98 silver badges141 bronze badges Recognized by Microsoft Azure Collective asked 14 hours ago DaveM_77DaveM_77 355 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Looking at the documentation, you need to specify the sub-resource type:

resourceId('Microsoft.Web/sites/workflows', logicAppName, workflowName)
发布评论

评论列表(0)

  1. 暂无评论