diff --git a/configs/testdata/invalid-files/resource-count-and-for_each.tf b/configs/testdata/invalid-files/resource-count-and-for_each.tf new file mode 100644 index 000000000000..530fef74f4de --- /dev/null +++ b/configs/testdata/invalid-files/resource-count-and-for_each.tf @@ -0,0 +1,4 @@ +resource "test" "foo" { + count = 2 + for_each = ["a"] +}