fix(azuredeployer.gbapp): Create DB with basic cost.

This commit is contained in:
Alan Perdomo 2023-03-21 18:09:11 -03:00
parent 6c9d124524
commit 0ed600edc3

View file

@ -805,7 +805,7 @@ export class AzureDeployerService implements IGBInstallationDeployer {
private async createStorage(group: string, serverName: string, name: string, location: string) { private async createStorage(group: string, serverName: string, name: string, location: string) {
const params = { const params = {
sku: { name: 'Free' }, sku: { name: 'Basic' },
createMode: 'Default', createMode: 'Default',
location: location location: location
}; };