From d29844969aa002c5928562f57925b169656ee29f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 7 Nov 2016 14:58:00 -0800 Subject: [PATCH] terraform: test fixture needs to use variable so its not pruned --- .../test-fixtures/apply-unknown-interpolate/child/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/terraform/test-fixtures/apply-unknown-interpolate/child/main.tf b/terraform/test-fixtures/apply-unknown-interpolate/child/main.tf index 6a2f85930..1caedabc4 100644 --- a/terraform/test-fixtures/apply-unknown-interpolate/child/main.tf +++ b/terraform/test-fixtures/apply-unknown-interpolate/child/main.tf @@ -1 +1,5 @@ variable "value" {} + +resource "aws_instance" "bar" { + foo = "${var.value}" +}