in src/aws.js [199:229]
async function waitForInstanceRunning(ec2InstanceId, region) {
// Region is always provided now
const ec2ClientOptions = { region };
const ec2 = new EC2Client(ec2ClientOptions);
core.info(`Using region ${region} for checking instance ${ec2InstanceId} status`);
try {
core.info(`Checking for instance ${ec2InstanceId} to be up and running`);
await waitUntilInstanceRunning(
{
client: ec2,
maxWaitTime: 300,
},
{
Filters: [
{
Name: 'instance-id',
Values: [ec2InstanceId],
},
],
},
);
core.info(`AWS EC2 instance ${ec2InstanceId} is up and running`);
return;
} catch (error) {
core.error(`AWS EC2 instance ${ec2InstanceId} initialization error`);
throw error;
}
}