gpt4 book ai didi

azure - 使用 Bicep 输出新创建的功能应用程序 key

转载 作者:行者123 更新时间:2023-12-02 22:53:15 27 4
gpt4 key购买 nike

我有一个二头肌模板,可以在专用模块中创建函数应用程序。我想从模块中取出功能应用程序 key 。有人知道如何获得功能键吗?

我在属性列表中找不到它:

enter image description here

最佳答案

如果您想检索默认主机 key ,可以使用listkeys函数:

param functionAppName string

resource functionApp 'Microsoft.Web/sites@2022-09-01' existing = {
name: functionAppName
}

resource functionAppHost 'Microsoft.Web/sites/host@2022-09-01' existing = {
name: 'default'
parent: functionApp
}

// Default host key
output defaultHostKey string = functionAppHost.listKeys().functionKeys.default

// Master key
output masterKey string = functionAppHost.listKeys().masterKey

// Addtionally grab the system keys
output systemKeys object = functionAppHost.listKeys().systemKeys

关于azure - 使用 Bicep 输出新创建的功能应用程序 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69251430/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com