fix(azuredeployer.gbapp): Adding Resource Providers (.Web/.Sql)

This commit is contained in:
phpussente 2023-03-21 16:06:02 -03:00
parent 2fe293ec8b
commit 6c9d124524

View file

@ -359,6 +359,8 @@ export class AzureDeployerService implements IGBInstallationDeployer {
GBLog.info(`Enabling resource providers...`);
await this.enableResourceProviders('Microsoft.BotService');
await this.enableResourceProviders('Microsoft.Web');
await this.enableResourceProviders('Microsoft.Sql');
GBLog.info(`Deploying Deploy Group (It may take a few minutes)...`);
await this.createDeployGroup(name, instance.cloudLocation);