2016-02-16 93 views
3

我們使用部署模板設置了Azure Web應用程序。現在從命令行我們可以檢查一些配置設置。我們如何顯示當前的連接字符串?我們試過這個:顯示連接字符串

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

這隻給我們一些細節,不包括連接字符串。

Web app Name 
SKU   
Enabled  
Last Modified 
Location  
Host Name  

我們也試過尋找resources.azure.com,我們看到連接字符串列在那裏。我們只是不知道如何通過Azure CLI訪問它。

回答

2

您可以列出連接字符串如果您從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 
    } 
] 
2

目前你不能。最好你有一些額外的信息使用-vv選項。

azure webapp show [resource-group] [name] -vv 

的ConnectionString不會在那裏,甚至壽的appSettings中生成的JSON顯示出來,它總是會不管你把價值英寸

"siteProperties":{ 
    "metadata":null, 
    "properties":[], 
    "appSettings":null 
}