Skip to content

Commit 595be11

Browse files
committed
fix: correctly format prefix
1 parent 08b478d commit 595be11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ data "aws_ami" "runner" {
236236
}
237237

238238
resource "aws_launch_template" "gitlab_runner_instance" {
239-
name_prefix = local.name_runner_agent_instance
239+
name_prefix = "${local.name_runner_agent_instance}-"
240240
image_id = data.aws_ami.runner.id
241241
user_data = base64gzip(local.template_user_data)
242242
instance_type = var.instance_type

0 commit comments

Comments
 (0)