gpt4 book ai didi

azure - 显示连接字符串

转载 作者:行者123 更新时间:2023-12-01 09:21:28 25 4
gpt4 key购买 nike

我们已使用部署模板设置了 Azure Web 应用程序。现在,我们可以从命令行检查一些配置设置。我们如何显示当前的连接字符串?我们已经尝试过:

azure webapp show <resource-group> <site-name>

这仅向我们提供了一些详细信息,不包括连接字符串。

 Web app Name 
SKU
Enabled
Last Modified
Location
Host Name

我们还尝试在 resources.azure.com 中查找,我们确实看到了那里列出的连接字符串。我们只是不知道如何通过 Azure CLI 访问它。

最佳答案

如果从 ARM 模式切换到 ASM 模式并使用 azure site connectionstring list,则可以列出连接字符串...

$ azure config set mode asm
info: Executing command config set
info: Setting "mode" to value "asm"
info: Changes saved
info: config set command OK

$ azure site connectionstring list <webAppName> --json
[
{
"connectionString": "my super secret connection string!",
"name": "DefaultConnection",
"type": 2
}
]

关于azure - 显示连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35443829/

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