Skip to content

Commit

Permalink
Fix aws_autoscaling_group - remove doubled $ from version
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Wieczorek committed May 28, 2020
1 parent 5b060d6 commit d0dfbd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit d0dfbd4

Please sign in to comment.