Where do I get my actual Azure Website Deployment password?

前端 未结 2 1559
时光说笑
时光说笑 2020-12-24 05:53

In Visual studio 2015, when I Publish my Website/Webapp to Azure, I\'m able to create a new publishing profile automatically (by entering my personal Azure account credentia

2条回答
  •  感情败类
    2020-12-24 06:26

    If you are not familiar with PowerShell, you can try the below instruction to get the deployment username and password using the azure cli.

    az webapp deployment list-publishing-profiles --name your_web_app_name --resource-group your_resource_group
    

    You also add --query to retrieve the "userPWD"

    az webapp deployment list-publishing-profiles --name your_web_app_name --resource-group your_resource_group --query '[].userPWD' -o tsv
    

    Output will be like

    oMarhPTTJc6F7muHfz11232342342342342420tv5Lwikf1Xc

提交回复
热议问题