File tree 4 files changed +14
-0
lines changed
4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ module "runners" {
123
123
userdata_pre_install = var. userdata_pre_install
124
124
userdata_post_install = var. userdata_post_install
125
125
key_name = var. key_name
126
+ runner_ec2_tags = var. runner_ec2_tags
126
127
127
128
create_service_linked_role_spot = var. create_service_linked_role_spot
128
129
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ resource "aws_launch_template" "runner" {
93
93
{
94
94
" Name" = format (" %s" , local. name_runner )
95
95
},
96
+ var. runner_ec2_tags
96
97
)
97
98
}
98
99
Original file line number Diff line number Diff line change @@ -368,3 +368,9 @@ variable "egress_rules" {
368
368
description = null
369
369
}]
370
370
}
371
+
372
+ variable "runner_ec2_tags" {
373
+ description = " Map of tags that will be added to the launch template instance tag specificatons."
374
+ type = map (string )
375
+ default = {}
376
+ }
Original file line number Diff line number Diff line change @@ -406,3 +406,9 @@ variable "disable_check_wokflow_job_labels" {
406
406
type = bool
407
407
default = false
408
408
}
409
+
410
+ variable "runner_ec2_tags" {
411
+ description = " Map of tags that will be added to the launch template instance tag specificatons."
412
+ type = map (string )
413
+ default = {}
414
+ }
You can’t perform that action at this time.
0 commit comments