You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The module create resources to facilitate the `orchestrator labmda` to recreate action runners.
4
+
5
+
-*launch template* : A launch template is creates that can crate an action runner, by default a spot instance is requested. For configuration parameters SSM is used.
6
+
-*security group* : Security groups attached to the action runner.
7
+
-*s3 bucket* : To avoid the action runner distribution have to be download a cached version is expected in a S3 bucket.
8
+
-*policies and roles* : Policies and roles for the action runner. By default the session manager is enabled
Copy file name to clipboardExpand all lines: modules/runners/variables.tf
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@ variable "aws_region" {
4
4
}
5
5
6
6
variable"vpc_id" {
7
-
description="The VPC to spin up instances in"
7
+
description="The VPC for the security groupss."
8
+
type=string
8
9
}
9
10
10
-
11
11
variable"overrides" {
12
12
description="This maps provides the possibility to override some defaults. The following attributes are supported: `name_sg` overwrite the `Name` tag for all security groups created by this module. `name_runner_agent_instance` override the `Name` tag for the ec2 instance defined in the auto launch configuration. `name_docker_machine_runners` ovverrid the `Name` tag spot instances created by the runner agent."
13
13
type=map(string)
@@ -29,7 +29,8 @@ variable "environment" {
29
29
}
30
30
31
31
variable"distribution_bucket_name" {
32
-
type=string
32
+
description="Bucket for storing the action runner distribution."
description="List of maps used to create the AMI filter for the runner AMI. Currently Amazon Linux 2 `amzn2-ami-hvm-2.0.????????-x86_64-ebs` looks to *not* be working for this configuration."
60
+
description="List of maps used to create the AMI filter for the action runner AMI."
61
61
type=map(list(string))
62
62
63
63
default={
@@ -66,7 +66,7 @@ variable "ami_filter" {
66
66
}
67
67
68
68
variable"ami_owners" {
69
-
description="The list of owners used to select the AMI of runner instances."
69
+
description="The list of owners used to select the AMI of action runner instances."
0 commit comments