I have a web application that currently runs on Azure under my own Azure subscription. I'd like to transfer this to another party so that they can run the web application under their subscription. How can I do this?
Can I:
Note that the web application consists of a website, an Azure SQL database, and a Blob container.
Azure now has the Resource Manager API (ARM). One of the features: Resource Groups. A resource group serves as a bounding box for a set of resources (web apps, VMs, etc.). You can grant permissions on a resource group, allowing someone external to your subscription/organization to work within that resource group. With owner
permission, they'd be able to create new resources within that group, and never be able to see anything beyond the resource group.