Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
JayArrowz committed Apr 17, 2023
1 parent 4908554 commit b4efe50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const core = require('@actions/core');
const ssm = require('./ssm-helper');
const fs = require('fs');

async function run_action()
{
try
Expand All @@ -12,7 +13,7 @@ async function run_action()
const decryption = core.getInput('decryption') === 'true';
const maskValues = core.getInput('mask-values') === 'true';
const outFile = core.getInput('out-file');
const outFileStr = "";
let outFileStr = "";
const params = await ssm.getParameters(ssmPath, getChildren, decryption, region);
for (let param of params)
{
Expand Down

0 comments on commit b4efe50

Please sign in to comment.