Interface Ec2Configuration

interface Ec2Configuration {
    ami?: string;
    instanceProfileName?: string;
    instanceType: string;
}

Properties

ami?: string

The AMI to use. Can be specified as an imageId, starting with "ami-", or a short hand name like, AmazonLinux2, AmazonLinux2_arm64 etc. For a complete list, please see the documentation.

Will default to AmazonLinux2

instanceProfileName?: string

The instance profile name for the EC2 instance. If omitted, then Attini will create an instance profile with the Runners default role.

instanceType: string

The instance type of the EC2 instance that will host the Runner.

Generated using TypeDoc