From d0dfbd45ecb5cec9c3000f068b41b8222b318c89 Mon Sep 17 00:00:00 2001 From: Michal Wieczorek Date: Thu, 28 May 2020 09:39:47 +0200 Subject: [PATCH] Fix aws_autoscaling_group - remove doubled $ from version --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index aac8fab..8d74d04 100755 --- a/main.tf +++ b/main.tf @@ -60,7 +60,7 @@ resource "aws_launch_template" "bastion-service-host" { tag_specifications { resource_type = "instance" tags = var.tags -} + } tag_specifications { resource_type = "volume" tags = var.tags @@ -97,7 +97,7 @@ resource "aws_autoscaling_group" "bastion-service" { launch_template { launch_template_specification { launch_template_id = aws_launch_template.bastion-service-host.id - version = "$$Latest" + version = "$Latest" } override {