cloud/awscloud: give secure instances a name
That way you can just enter the parent instance id into the search bar and get both the worker and its executor.
This commit is contained in:
parent
f68fcff400
commit
779053d910
1 changed files with 4 additions and 0 deletions
|
|
@ -154,6 +154,10 @@ func (a *AWS) RunSecureInstance(iamProfile, keyName, cloudWatchGroup, hostname s
|
|||
Key: aws.String("parent"),
|
||||
Value: aws.String(identity.InstanceID),
|
||||
},
|
||||
ec2types.Tag{
|
||||
Key: aws.String("Name"),
|
||||
Value: aws.String(fmt.Sprintf("Executor-for-%s", identity.InstanceID)),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue