我正在通过Bicep配置创建逻辑应用程序和功能应用程序,但需要使用功能应用程序主密钥更新logicapp应用程序设置。
下面是Bicep模板:
resource funcapp 'Microsoft.Web/sites@2021-01-15' = {
name: funcappname
location: Location
tags: tags
kind: 'functionapp'
properties: {
enabled: true
serverFarmId: spfuncapp.id
...
}
}
resource logicappsite 'Microsoft.Web/sites@2021-01-15' = {
name: logicapp
location: Location
tags: tags
kind: 'functionapp,workflowapp'
properties: {
enabled: true
serverFarmId: spD365LogicApp.id
siteConfig: {
appSettings: [
{
'name': 'azureFunctionOperation_functionAppKey'
'value': '<function app master key here?'
}
...
]
...
}
...
}
}
字符串
如何将功能应用主密钥添加到逻辑应用设置中?
1条答案
按热度按时间fkvaft9z1#
您可以使用
listKeys
函数获取主密钥:字符串
在你的情况下,你可以写这样的东西:
型