terraform/internal/stacks/stackruntime/testdata/mainbundle/test/with-module/with-module.tfstack.hcl
Liam Cervante 9bbe34daa4
stacks: pre-destroy refresh should use a normal plan (#36696)
* stacks: pre-destroy refresh should use a normal plan

* format
2025-03-18 09:28:31 +01:00

30 lines
374 B
HCL

required_providers {
testing = {
source = "hashicorp/testing"
version = "0.1.0"
}
}
provider "testing" "default" {}
variable "input" {
type = string
}
variable "id" {
type = string
default = null
}
component "self" {
source = "./"
providers = {
testing = provider.testing.default
}
inputs = {
id = var.id
input = var.input
}
}