summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/command/test-fixtures/import-provider-remote-state/main.tf
blob: 23ebfb4c62b5c268dcfa3512994a9e8e1dc70831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
terraform {
	backend "local" {
		path = "imported.tfstate"
	}
}

provider "test" {
    foo = "bar"
}

resource "test_instance" "foo" {
}