You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackconfig/testdata/basics-bundle/builtin/main.tfcomponent.hcl

23 lines
286 B

required_providers {
# Built-in providers can be omitted.
}
provider "terraform" "x" {}
component "a" {
source = "./component"
inputs = {
name = var.name
}
providers = {
x = var.provider
}
}
output "greeting" {
type = string
value = component.a.greeting
}