Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure cloud service deployment issue with pay as you go subscription - cloud services are not available in this subscription

I am having an issue while deploying an Azure web role to a cloud service. It shows me the error

Cloud services are not available in this subscription.

I am using a pay as you go subscription on Azure. I don't know if there is any limitation with this subscription for cloud service deployment or not.

Error Details.

like image 966
Krishna_K_Batham Avatar asked Mar 29 '16 14:03

Krishna_K_Batham


People also ask

How do I add a subscription to my Azure pay as you go?

Sign in to the Azure portal. Navigate to Subscriptions and then select your pay-as-you-go subscription.

What happens if I dont pay my Azure subscription?

If I forget to pay, what happens? The service is canceled and your resources are no longer available. Your Azure data is deleted 90 days after the service is terminated. To learn more, see Microsoft Trust Center - How we manage your data.

Which of the following Azure subscription could be helpful you to pay only for what you have used?

Pay as you go with Azure—plus get free services Create an Azure account and purchase cloud services at pay-as-you-go pricing. Get monthly amounts of select services free. Pay only for what you use beyond free amounts.

Why do I get no Subscriptions found when I try to access Azure AD in the Azure portal?

To fix this issue: Make sure that the correct Azure directory is selected by selecting your account at the top right. If the right Azure directory is selected but you still receive the error message, assign the Owner role to your account.


2 Answers

Updated version of JerryGoyal's solution.

Cloud Service Management will have to be done using the new Azure Portal, because Cloud Service Management in the old portal will be disabled as of 11/15/2017.

  • Log into the new Azure Portal.
  • Go to the Subscriptions View.
  • Set your account as a Co-Admin. Microsoft Documentation.
like image 56
ChasetopherB Avatar answered Sep 24 '22 06:09

ChasetopherB


I think the issue you're running into is that the Cloud Service Publish Wizard in VS only supports subscriptions in which you are an admin or co-admin granted via via the old portal (manage.windowsazure.com). If you've been given access via RBAC or the new portal, then VS will not see the resources under those subscriptions.

To work around it, you can build the package using msbuild.exe and then upload it via the portal.

That help?

like image 36
bmoore-msft Avatar answered Sep 26 '22 06:09

bmoore-msft