mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
* 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
14 lines
230 B
HCL
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
|
|
}
|