summaryrefslogtreecommitdiff
path: root/aws.go
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-11-12 12:51:58 +0000
committerNick White <git@njw.name>2019-11-12 12:51:58 +0000
commit9aa1a692d0709b419dded5009dc2cf78dd0759c2 (patch)
tree3413a7d148b347cd273cd0dfdf4c88af26ae5634 /aws.go
parent1ebb21bfd9523291b3cc6f59103204942c5b9400 (diff)
Add spotme command to start appropriate spot instances
Diffstat (limited to 'aws.go')
-rw-r--r--aws.go18
1 files changed, 18 insertions, 0 deletions
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
+}