From 9aa1a692d0709b419dded5009dc2cf78dd0759c2 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 12 Nov 2019 12:51:58 +0000 Subject: Add spotme command to start appropriate spot instances --- aws.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'aws.go') diff --git a/aws.go b/aws.go index 4aea082..73f3b2f 100644 --- a/aws.go +++ b/aws.go @@ -349,3 +349,21 @@ func (a *AwsConn) GetInstanceDetails() ([]InstanceDetails, error) { }) return details, err } + +func (a *AwsConn) StartInstances(n int) error { + _, err := a.ec2svc.RequestSpotInstances(&ec2.RequestSpotInstancesInput{ + InstanceCount: aws.Int64(int64(n)), + LaunchSpecification: &ec2.RequestSpotLaunchSpecification{ + IamInstanceProfile: &ec2.IamInstanceProfileSpecification{ + Arn: aws.String("arn:aws:iam::557852942063:instance-profile/pipeliner"), + }, + ImageId: aws.String("ami-02cd15d68d4ca2865"), + InstanceType: aws.String("m5.large"), + SecurityGroupIds: []*string{ + aws.String("sg-0be8a3ab89e7136b9"), + }, + }, + Type: aws.String("one-time"), + }) + return err +} -- cgit v1.2.1-24-ge1ad