Skip to content

Commit

Permalink
chore: Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Nov 23, 2021
1 parent 66ce837 commit 8d58a1a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ async function run() {
const count = core.getInput('count', { required: true });
const startedBy = core.getInput('started-by', { required: false }) || agent;
const subnet = core.getInput('subnet', { required: true });
const securityGroup = core.getInput('security-group', { required: true });
const waitForFinish = core.getInput('wait-for-finish', { required: false }) || false;
let waitForMinutes = parseInt(core.getInput('wait-for-minutes', { required: false })) || 30;
if (waitForMinutes > MAX_WAIT_MINUTES) {
Expand Down Expand Up @@ -300,7 +301,8 @@ async function run() {
startedBy: startedBy,
networkConfiguration: {
awsvpcConfiguration: {
subnets: [subnet]
subnets: [subnet],
securityGroups: [securityGroup]
},
},
})}`)
Expand All @@ -312,7 +314,8 @@ async function run() {
startedBy: startedBy,
networkConfiguration: {
awsvpcConfiguration: {
subnets: [subnet]
subnets: [subnet],
securityGroups: [securityGroup]
},
},
}).promise();
Expand Down

0 comments on commit 8d58a1a

Please sign in to comment.