gpt4 book ai didi

azure - 以编程方式动态生成 Azure Function 的访问代码

转载 作者:行者123 更新时间:2023-12-03 02:37:19 25 4
gpt4 key购买 nike

我有几个 Azure 函数(用 C# 编写).. 我已将其 URL 提供给不同的团队来调用\调用 .. 我注意到后缀的访问代码始终相同,因此存在安全风险..

有没有一种方法可以让我们以编程方式动态生成 Azure 函数的访问代码并将其附加到函数的 URL ..,以便每次调用都有一个唯一生成的访问代码?

请指导。谢谢。

最佳答案

是的,您可以使用 azure cli/rest api/powershell 来完成:

$keyName = "MyFunctionKey"
$payload = (@{ properties=@{ name=$keyName; value="abcd1234" } } `
| ConvertTo-Json -Compress).Replace('"', '\"')
az rest --method put `
--uri "$resourceId/functions/$functionName/keys/$($keyName)?api-version=2018-11-01" `
--body "$payload"

来源:

https://markheath.net/post/managing-azure-functions-keys-2

如果您愿意,您也可以使用 REST API 获得相同的结果:

https://learn.microsoft.com/en-us/rest/api/appservice/webapps/createorupdatefunctionsecret

关于azure - 以编程方式动态生成 Azure Function 的访问代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62783629/

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