用于 fin&Ops 应用程序的 bicep(dynamicsax 连接)grantType:client_credentials

问题描述 投票:0回答:1

我已经从逻辑应用程序 ui 创建了一个连接,以连接到实例(Dynamics ERP)以“列出表中存在的项目”。我通过服务主体选择了身份验证,并在查看 json 视图时提供了 appid、appsecret 等。我可以在属性下看到连接

"parameterValues": { "token:clientId": "8543874-dummyvalue" "token:TenantId": "87435-afd" "token:grantType": "client_credentials"}

请帮助二头肌进行此连接

azure-pipelines azure-bicep
1个回答
0
投票

这个链接解决了我的问题。我已经替换为下面的

  parameterValues: {
  'token:clientId': ClientId
  'token:clientSecret': ClientSecret
  'token:TenantId': subscription().tenantId
  'token:grantType': client_credentials
  }
© www.soinside.com 2019 - 2024. All rights reserved.