Alters Worker Instance Name

This commit is contained in:
2023-09-22 16:18:07 -03:00
parent 0954fee932
commit 0eca3287d1

View File

@@ -231,7 +231,7 @@ resource "aws_instance" "worker" {
}) })
tags = { tags = {
Name = "${var.project_name}-worker" Name = "${var.project_name}-worker-${count.index+1}"
} }
} }