Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.33 KB

configure-deployment-user-no-h.md

File metadata and controls

26 lines (20 loc) · 1.33 KB
title description services author ms.service ms.topic ms.date ms.author ms.custom
include file
include file
app-service
cephalin
app-service
include
06/14/2019
cephalin
include file

FTP and local Git can deploy to an Azure web app by using a deployment user. Once you configure your deployment user, you can use it for all your Azure deployments. Your account-level deployment username and password are different from your Azure subscription credentials.

To configure the deployment user, run the az webapp deployment user set command in Azure Cloud Shell. Replace <username> and <password> with a deployment user username and password.

  • The username must be unique within Azure, and for local Git pushes, must not contain the ‘@’ symbol.
  • The password must be at least eight characters long, with two of the following three elements: letters, numbers, and symbols.
az webapp deployment user set --user-name <username> --password <password>

The JSON output shows the password as null. If you get a 'Conflict'. Details: 409 error, change the username. If you get a 'Bad Request'. Details: 400 error, use a stronger password.

Record your username and password to use to deploy your web apps.