summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf')
-rw-r--r--vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf b/vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf
new file mode 100644
index 00000000..23ebfb4c
--- /dev/null
+++ b/vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf
@@ -0,0 +1,12 @@
+terraform {
+ backend "local" {
+ path = "imported.tfstate"
+ }
+}
+
+provider "test" {
+ foo = "bar"
+}
+
+resource "test_instance" "foo" {
+}