Reputation: 521
I have a client with a web app running in Azure App Services and a SQL Azure database that the web app uses.
This client will not be using these for the foreseeable future and would like to minimize costs. I know I can "turn off" the app service, but I'm not sure what impact that has on pricing. Also I'm not sure if there are similar options for the SQL Azure database.
Is there a way to reduce the costs for these services (hopefully to zero) without deleting them from the Azure subscription?
Upvotes: 3
Views: 2046
Reputation: 15648
For Azure SQL Database (DTU-model) you can scale down the database service tier to Basic (if the database has less than 2 GB in size) which cost USD$5 a month or to S0 if the database has 256 GB or less) which cost USD$15 a month.
You can also export the Azure SQL Database (as bacpac) to an Azure Storage Account and then delete the database. If you need the database in the future, you just import the database from the storage account.
To spend less with App Service you can lower pricing tier for the App Service Plan and apply it as shown on the image below:
Upvotes: 1