You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/test/reused-backend-config-child.../main.tftest.hcl

23 lines
479 B

# The "state/terraform.tfstate" local backend is used with the implicit internal state "./child-module"
run "test_1" {
module {
source = "./child-module"
}
variables {
input = "foobar"
}
backend "local" {
path = "state/terraform.tfstate"
}
}
# The "state/terraform.tfstate" local backend is used with the implicit internal state "" (empty string == root module under test)
run "test_2" {
backend "local" {
path = "state/terraform.tfstate"
}
}