mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
12 lines
361 B
Terraform
12 lines
361 B
Terraform
|
|
||
|
# This configuration is just here to allow the tests in session_test to
|
||
|
# evaluate expressions without getting errors about things not being declared.
|
||
|
# Therefore it's intended to just be the minimum config to make those
|
||
|
# expressions work against the equally-minimal mock provider.
|
||
|
resource "test_instance" "foo" {
|
||
|
}
|
||
|
|
||
|
module "module" {
|
||
|
source = "./child"
|
||
|
}
|