diff --git a/.script/dataConnectorValidator.ts b/.script/dataConnectorValidator.ts index 78b7c6d7b7..e923964eb9 100644 --- a/.script/dataConnectorValidator.ts +++ b/.script/dataConnectorValidator.ts @@ -74,7 +74,7 @@ function getConnectorCategory(dataTypes : any, instructionSteps:[]) { return ConnectorCategory.AzureFunction; } - else if(dataTypes[0].name.includes("meraki") && JSON.stringify(instructionSteps).includes("\"type\":\"InstallAgent\"")) + else if((dataTypes[0].name.includes("meraki") || dataTypes[0].name.includes("vcenter")) && JSON.stringify(instructionSteps).includes("\"type\":\"InstallAgent\"")) { return ConnectorCategory.SysLog; }