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/embedded-stack-bundle/root/main.tfcomponent.hcl

25 lines
325 B

required_providers {
null = {
source = "hashicorp/null"
version = "3.2.1"
}
}
stack "pet-nulls" {
source = "example.com/awesomecorp/tfstack-pet-nulls"
version = "0.0.2"
inputs = {
name = var.name
provider = provider.null.a
}
}
provider "null" "a" {
}
locals {
sound = "bleep bloop"
}