本文介绍了如何为逻辑应用程序启用系统分配的标识?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我想使用以下方法为LogicApp启用系统分配的身份:

I would like to enable system-assigned identity for a LogicApp using:

1)REST API,或者

1) REST API, or

2)ARM模板(部署逻辑应用程序时)

2) ARM Template (while deploying the logic app)

您能否确认这是否支持?

Can you confirm if this is supported?

如果没有,我在哪里可以打开问题来请求此功能?

If not, where can I open an issue to request this functionality ?

Azure门户允许我启用或禁用系统分配的身份。

Azure portal allows me to enable or disable system-assigned identity.

但是,我正在寻找一种实现这一目标的程序化方法。

However, I'm looking for a programmatic way to achieve this.

谢谢,

Sourabh

Thanks,
Sourabh

推荐答案

	"resources": [{
		"name": "[parameters('workflowName')]",
		"type": "Microsoft.Logic/workflows",
		"identity": {
			"type": "SystemAssigned",
		},
		"location": "[parameters('location')]",

Morten la Cour

Morten la Cour


这篇关于如何为逻辑应用程序启用系统分配的标识?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 00:00