mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-03 14:00:52 -05:00
* fix nil pointer exception when planning with undeclared variables * another function does the same
19 lines
266 B
HCL
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
|
|
}
|
|
}
|