mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-21 11:01:23 -05:00
14 lines
201 B
HCL
14 lines
201 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
output "output" {
|
|
value = var.input
|
|
|
|
precondition {
|
|
condition = var.input == "something incredibly specific"
|
|
error_message = "this should fail"
|
|
}
|
|
}
|