Skip to content

Commit

Permalink
fix(lib): fix merging input with the config
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed May 14, 2024
1 parent 9008bda commit 402e6d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/azure-importer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ export const AzureImporter = (): PluginInterface => {
for await (const input of inputs) {
const mergedWithConfig = Object.assign(
{},
validateInput(input),
validatedConfig
validatedConfig,
input,
validateInput(input)
);
const azureInput = mapInputToAzureInputs(mergedWithConfig);
const rawResults = await getVmUsage(azureInput);
Expand Down

0 comments on commit 402e6d0

Please sign in to comment.