Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to specify different FTP user in deployment credentials for each Azure Website?

Tags:

ftp

azure

I am trying to setup FTP access for the Azure website.I have added a user in the deployment credentials for an Azure website.Which is fine,but the same credentials are replicated to all the remaining websites in my subscription.
Is there any way to adding a user for only a specific website? Or Can we delete the user from a specific website?
How to specify different deployment users for each Azure website?

like image 314
Mohana Krishna G Avatar asked Dec 20 '13 04:12

Mohana Krishna G


People also ask

How do I change deployment credentials in Azure?

User credentials (aka Deployment Credentials) These are the credentials that you choose yourself in the Azure portal. If you're not sure what they are, you can reset them by going to Deployment Center -> Select FTP and Click Dashboard button -> User Credentials.

What method does Microsoft Azure App Service use to obtain credentials for users?

It uses the standard OAuth 2.0 client credentials grant. In the Azure portal, select Active Directory > App registrations > New registration.


1 Answers

No!

The deployment credentials are bound to your Microsoft Account (Live ID) and are same for all the web sites that your account has access to. These are called user level credentials.

There is also site level credentials - this are auto generated and auto managed by the KUDU. You cannot change it to a value of your own. Usually it is a long long string for username and same for password.

You can learn more about Web Site Credentials at the WIKI page for the KUDU project. What is KUDU? KUDU is the project that runs Azure Web Sites.

My understanding about your concern is that you want to give out FTP access to a 3rd party, and you don't want them to have access to the rest of the Web Sites you have. Well, currently this is partially possible - only with the Site-Level credentials, over which you have no control (username / password).

like image 101
astaykov Avatar answered Sep 22 '22 19:09

astaykov