terraform/internal/stacks/stackruntime/testdata/mainbundle/test/plan-undeclared-variable-in-component/undeclared-variable.tfstack.hcl
Liam Cervante 3475d22741
Fix nil pointer exception when planning stacks with undeclared variables (#34638)
* fix nil pointer exception when planning with undeclared variables

* another function does the same
2024-02-12 17:24:15 +01:00

19 lines
266 B
HCL

required_providers {
terraform = {
source = "terraform.io/builtin/terraform"
}
}
provider "terraform" "default" {}
component "self" {
source = "./"
providers = {
terraform = provider.terraform.default
}
inputs = {
input = var.input
}
}