Skip to content

Commit 4ca14cb

Browse files
committed
ugh
1 parent 773d6b4 commit 4ca14cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ async function runTask(ecs, clusterName, taskDefArn, waitForMinutes) {
199199
const waitForTask = core.getInput('wait-for-task-stopped', { required: false }) || 'false';
200200
const startedBy = core.getInput('run-task-started-by', { required: false }) || 'GitHub-Actions';
201201
const launchType = core.getInput('run-task-launch-type', { required: false }) || 'FARGATE';
202-
const subnetIds = core.getInput('run-task-subnet-ids', { required: false }) || '';
203-
const securityGroupIds = core.getInput('run-task-security-group-ids', { required: false }) || '';
202+
const subnetIds = core.getInput('run-task-subnets', { required: false }) || '';
203+
const securityGroupIds = core.getInput('run-task-security-groups', { required: false }) || '';
204204
const containerOverrides = JSON.parse(core.getInput('run-task-container-overrides', { required: false }) || '[]');
205205
let awsvpcConfiguration = {}
206206

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ async function runTask(ecs, clusterName, taskDefArn, waitForMinutes) {
2727
const waitForTask = core.getInput('wait-for-task-stopped', { required: false }) || 'false';
2828
const startedBy = core.getInput('run-task-started-by', { required: false }) || 'GitHub-Actions';
2929
const launchType = core.getInput('run-task-launch-type', { required: false }) || 'FARGATE';
30-
const subnetIds = core.getInput('run-task-subnet-ids', { required: false }) || '';
31-
const securityGroupIds = core.getInput('run-task-security-group-ids', { required: false }) || '';
30+
const subnetIds = core.getInput('run-task-subnets', { required: false }) || '';
31+
const securityGroupIds = core.getInput('run-task-security-groups', { required: false }) || '';
3232
const containerOverrides = JSON.parse(core.getInput('run-task-container-overrides', { required: false }) || '[]');
3333
let awsvpcConfiguration = {}
3434

0 commit comments

Comments
 (0)