mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-16 14:11:33 +02:00
Rename cluster_name to name in internal module
* Ensure consistency between AWS and GCP platforms
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
# Workers AutoScaling Group
|
||||
resource "aws_autoscaling_group" "workers" {
|
||||
name = "${var.cluster_name}-worker ${aws_launch_configuration.worker.name}"
|
||||
name = "${var.name}-worker ${aws_launch_configuration.worker.name}"
|
||||
|
||||
# count
|
||||
desired_capacity = "${var.count}"
|
||||
@ -29,7 +29,7 @@ resource "aws_autoscaling_group" "workers" {
|
||||
|
||||
tags = [{
|
||||
key = "Name"
|
||||
value = "${var.cluster_name}-worker"
|
||||
value = "${var.name}-worker"
|
||||
propagate_at_launch = true
|
||||
}]
|
||||
}
|
||||
|
Reference in New Issue
Block a user