From 1560d5ab982dd122f8849bc47e4cda957746c9d4 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Wed, 2 Jul 2014 10:40:11 -0700 Subject: [PATCH] plan: add failing test case for nested object plan file --- command/test-fixtures/plan/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/command/test-fixtures/plan/main.tf b/command/test-fixtures/plan/main.tf index 5794f94d9..1ae939048 100644 --- a/command/test-fixtures/plan/main.tf +++ b/command/test-fixtures/plan/main.tf @@ -1,3 +1,8 @@ resource "test_instance" "foo" { ami = "bar" + + network_interface { + device_index = 0 + description = "Main network interface" + } }