Commit 82a3ccf5 authored by Felix Edelsten's avatar Felix Edelsten

Ensuring tags syntax is uniform

parent 3aef9618
...@@ -97,12 +97,13 @@ resource "aws_autoscaling_group" "bastion" { ...@@ -97,12 +97,13 @@ resource "aws_autoscaling_group" "bastion" {
max_size = "${var.bastion_instances}" max_size = "${var.bastion_instances}"
desired_capacity = "${var.bastion_instances}" desired_capacity = "${var.bastion_instances}"
tag { tags {
key = "Name" key = "Name"
value = "Bastion" value = "Bastion"
propagate_at_launch = true propagate_at_launch = true
} }
tag {
tags {
key = "service" key = "service"
value = "bastion" value = "bastion"
propagate_at_launch = true propagate_at_launch = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment