We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05fd375 commit b44f4b3Copy full SHA for b44f4b3
modules/runners/main.tf
@@ -74,12 +74,12 @@ resource "aws_launch_template" "runner" {
74
tag_specifications {
75
resource_type = "instance"
76
tags = local.tags
77
- pre_install = var.userdata_pre_install
78
- post_install = var.userdata_post_install
79
}
80
81
user_data = base64encode(templatefile("${path.module}/templates/user-data.sh", {
82
environment = var.environment
+ pre_install = var.userdata_pre_install
+ post_install = var.userdata_post_install
83
s3_location_runner_distribution = local.s3_location_runner_distribution
84
}))
85
0 commit comments