We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 893633c commit 54358edCopy full SHA for 54358ed
main.tf
@@ -35,7 +35,7 @@ resource "aws_instance" "this" {
35
placement_group = "${var.placement_group}"
36
tenancy = "${var.tenancy}"
37
38
- tags = "${merge(locals.instance_name, var.tags)}"
+ tags = "${merge(local.instance_name, var.tags)}"
39
40
lifecycle {
41
# Due to several known issues in Terraform AWS provider related to arguments of aws_instance:
@@ -78,7 +78,7 @@ resource "aws_instance" "this_t2" {
78
cpu_credits = "${var.cpu_credits}"
79
}
80
81
82
83
84
0 commit comments