terraform/internal/stacks/stackruntime/testdata/mainbundle/test/plan-undeclared-variable-in-component/undeclared-variable.tfcomponent.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
266 B
HCL
Raw Permalink Normal View History

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