mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 03:07:51 -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"
|
|
}
|
|
}
|