From 456ceb0c8c4cbaf7d566c1b6f595496e1b7b5e2f Mon Sep 17 00:00:00 2001 From: Denbeigh Stevens Date: Wed, 30 Aug 2023 14:59:01 -0500 Subject: [PATCH] fix(examples): remove reference to non-existant local var I hereby attest that the entirety of this work done with my own resources, and has nothing to do with my employer. --- examples/templates/aws-linux/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/templates/aws-linux/main.tf b/examples/templates/aws-linux/main.tf index f1f41024d938a..c3c262e51323e 100644 --- a/examples/templates/aws-linux/main.tf +++ b/examples/templates/aws-linux/main.tf @@ -249,7 +249,7 @@ resource "aws_instance" "dev" { availability_zone = "${data.coder_parameter.region.value}a" instance_type = data.coder_parameter.instance_type.value - user_data = local.user_data_start + user_data = local.user_data tags = { Name = "coder-${data.coder_workspace.me.owner}-${data.coder_workspace.me.name}" # Required if you are using our example policy, see template README