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/errored/main.tfstack.hcl

33 lines
464 B

required_providers {
null = {
source = "hashicorp/null"
version = "3.2.1"
}
}
provider "null" "a" {}
component "a" {
source = "./"
inputs = {
name = var.name
}
providers = {
null = provider.null.a
}
}
removed {
// This is invalid, you can't reference the whole component like this if
// the target component is still in the config.
from = component.a
source = "./"
providers = {
null = provider.null.a
}
}