terraform/internal/stacks/stackruntime/testdata/mainbundle/test/plan-undeclared-variable-in-component/undeclared-variable.tfcomponent.hcl
Liam Cervante a80220dcc9
stacks: rename .tfstack files to .tfcomponent (#37013)
* stacks: rename .tfstack files to .tfcomponent

* fix consistency issues
2025-05-15 08:33:13 +02: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
}
}