terraform/internal/command/testdata/query/basic/main.tf

14 lines
172 B
Terraform
Raw Normal View History

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
}
}
provider "test" {}
resource "test_instance" "example" {
ami = "ami-12345"
}