mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-03 12:07:54 +00:00
terraform: don't uniquely name ASG
This commit is contained in:
@@ -10,7 +10,7 @@ resource "template_file" "install" {
|
|||||||
|
|
||||||
// We launch Vault into an ASG so that it can properly bring them up for us.
|
// We launch Vault into an ASG so that it can properly bring them up for us.
|
||||||
resource "aws_autoscaling_group" "vault" {
|
resource "aws_autoscaling_group" "vault" {
|
||||||
name = "vault - ${aws_launch_configuration.vault.name}"
|
name = "vault"
|
||||||
launch_configuration = "${aws_launch_configuration.vault.name}"
|
launch_configuration = "${aws_launch_configuration.vault.name}"
|
||||||
availability_zones = ["${split(",", var.availability-zones)}"]
|
availability_zones = ["${split(",", var.availability-zones)}"]
|
||||||
min_size = "${var.nodes}"
|
min_size = "${var.nodes}"
|
||||||
|
|||||||
Reference in New Issue
Block a user