terraform/internal/stacks/stackruntime/testdata/mainbundle/test/with-built-in-provider-explicitly-defined/main.tfcomponent.hcl

24 lines
333 B
HCL

required_providers {
terraform = {
source = "terraform.io/builtin/terraform"
}
}
provider "terraform" "x" {}
component "a" {
source = "./component"
inputs = {
name = "test-name"
}
providers = {
terraform = provider.terraform.x
}
}
output "greeting" {
type = string
value = component.a.greeting
}