Rajeshkumar Kandhasamy
Rajeshkumar Kandhasamy

Reputation: 6461

Azure worker role deployment issue while publishing from Visual studio 2015

I have a Cloud Project for Worker Role in Visual Studio 2015, where i'm trying to deploy the same project using my azure credentials.

Getting the following exception, i tried to figure it out by googling, but no luck.

Any help/suggestion would be helpful.

Applying Diagnostics extension.

Description:

Could not find key for storage account ordastorage in the known subscriptions. Provide a key manually or make sure Visual Studio is connected to the subscription containing the storage account.

What would be the issue or possible cause?

Upvotes: 1

Views: 790

Answers (1)

Tom Sun
Tom Sun

Reputation: 24569

Could not find key for storage account ordastorage in the known subscriptions. Provide a key manually or make sure Visual Studio is connected to the subscription containing the storage account.

According to the exception, it indicates that you try to use the storage that is not under your subscription. To publish a cloud service project, you could set up the following services as described in this article:

  • A cloud service to run your roles in the Azure environment, and
  • A storage account that provides access to the Blob, Queue, and Table services.

Upvotes: 1

Related Questions