Skip to content

Commit d5ab69a

Browse files
exiettjasonwalsh
authored andcommitted
fix: remove spaces in Auto Scaling Group names (#11)
1 parent 16d734c commit d5ab69a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/worker/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ resource "aws_security_group" "worker" {
6767
}
6868
}
6969

70-
name = "Boundary worker"
70+
name = "BoundaryWorker"
7171
tags = var.tags
7272
vpc_id = var.vpc_id
7373
}
7474

7575
module "workers" {
7676
source = "../boundary"
7777

78-
auto_scaling_group_name = "Boundary Worker"
78+
auto_scaling_group_name = "BoundaryWorker"
7979
boundary_release = var.boundary_release
8080
bucket_name = var.bucket_name
8181
desired_capacity = var.desired_capacity

0 commit comments

Comments
 (0)