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/stackruntime/testdata/mainbundle/test/with-built-in-provider/main.tfcomponent.hcl

23 lines
305 B

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