作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人设法为 acs API 连接创建 Bicep 吗?通过逻辑应用设计器创建它时,您可以指定连接字符串。但是,我无法计算出 Bicep 文件的正确语法。如果我指定这个:
resource cn_communicationservices 'Microsoft.Web/connections@2018-07-01-preview' = {
name: connectionType
location: location
kind: 'V2'
properties: {
displayName: connectionName
parameterValues: {
connectionString: connString
}
api: {
name: connectionType
displayName: connectionName
description: 'Connector to send Email using the domains linked to the Azure Communication Services in your subscription'
iconUri: 'https://connectoricons-prod.azureedge.net/releases/v1.0.1619/1.0.1619.3185/${connectionType}/icon.png'
id: '/subscriptions/${subId}/providers/Microsoft.Web/locations/${location}/managedApis/acsemail'
type: 'Microsoft.Web/locations/managedApis'
}
testLinks: []
}
}
我收到此错误:
Parameter 'connectionString' is not allowed on the connection since it was not defined as aconnection parameter when the API was registeredI have tried many other things but none have worked, has anyone done this successfully?
最佳答案
请尝试使用以下参数来提供 ACS 连接字符串,
parameterValues: {
api_key : connString
}
我运行了本地测试并确认它可以创建 API 连接。
关于azure - 用于 acsemail API 连接的 Bicep,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75970423/
有人设法为 acs API 连接创建 Bicep 吗?通过逻辑应用设计器创建它时,您可以指定连接字符串。但是,我无法计算出 Bicep 文件的正确语法。如果我指定这个: resource cn_com
我是一名优秀的程序员,十分优秀!