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

14 lines
235 B
HCL

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
othertest = {
source = "happycorp/test"
}
}
}
resource "test_instance" "exists" {
// I exist!
}