mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-23 10:54:11 -04:00
* [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
12 lines
166 B
HCL
12 lines
166 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "hashicorp/test"
|
|
version = "1.0.2"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
}
|