terraform/internal/stacks/stackruntime/testdata/mainbundle/test/legacy-module/main.tf
Liam Cervante 8e47b5907c
stacks: provide more helpful diagnostics when providers types are mismatched (#35422)
* stacks: provide more helpful diagnostics when providers types are mismatched

* remove left over implementation experiments

* remove unnecessary fmt.Sprintf

* address comments

* fix incorrect pluralisation

* fix tests
2024-07-08 10:31:52 +02:00

14 lines
230 B
HCL

variable "id" {
type = string
default = null
nullable = true # We'll generate an ID if none provided.
}
variable "input" {
type = string
}
resource "testing_resource" "data" {
id = var.id
value = var.input
}