Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 2621ede

Browse files
authored
Merge pull request #14 from HENNGE/tf15compat
Support Terraform 0.15
2 parents 3bf58a0 + a8f6e29 commit 2621ede

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
2-
this_launch_template_id = var.launch_template == "" && var.create_lt ? concat(aws_launch_template.this.*.id, list(""))[0] : var.launch_template
3-
this_launch_template_name = var.launch_template == "" && var.create_lt ? concat(aws_launch_template.this.*.name, list(""))[0] : ""
2+
this_launch_template_id = var.launch_template == "" && var.create_lt ? concat(aws_launch_template.this.*.id, [""])[0] : var.launch_template
3+
this_launch_template_name = var.launch_template == "" && var.create_lt ? concat(aws_launch_template.this.*.name, [""])[0] : ""
44

55
this_autoscaling_group_id = concat(aws_autoscaling_group.this.*.id, aws_autoscaling_group.this_ignore_desired_capacity_changes.*.id, [""])[0]
66
this_autoscaling_group_name = concat(aws_autoscaling_group.this.*.name, aws_autoscaling_group.this_ignore_desired_capacity_changes.*.name, [""])[0]

0 commit comments

Comments
 (0)