我们已经使用部署模板设置了 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/