Current Configuration
const nodeCloudAzurePlugin = require("nodecloud-azure-plugin");
providers = [
{
name: "azure",
tag: "azure",
libName: "nodecloud-azure-plugin"
}
];
module.exports = providers;
Correct configuation
const nodeCloudAwsPlugin = require("nodecloud-aws-plugin");
const providers = [
{
name: "aws",
tag: "aws",
plugin: nodeCloudAwsPlugin
}
];`
module.exports = providers;