terraform/internal/command/testdata/init-with-tests-with-provider/main.tf
Liam Cervante 4b34902fab
[testing framework] allow tests to define and override providers (#33466)
* [testing framework] prepare for beta phase of development

* [Testing Framework] Add module block to test run blocks

* [testing framework] allow tests to define and override providers
2023-07-10 14:33:15 +01:00

12 lines
166 B
HCL

terraform {
required_providers {
test = {
source = "hashicorp/test"
version = "1.0.2"
}
}
}
resource "test_instance" "foo" {
ami = "bar"
}