fix(azuredeployer.gblib): FREE flag for database.

This commit is contained in:
Rodrigo Rodriguez 2023-03-21 13:32:27 -03:00
parent 799715a9ee
commit 1074ef7240

View file

@ -803,7 +803,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: 'Basic' }, sku: { name: 'Free' },
createMode: 'Default', createMode: 'Default',
location: location location: location
}; };