blob: af05c486a045f806577ce4991d03b000db9a2565 [file] [log] [blame]
variable "input" {
type = string
}
output "output" {
value = var.input
precondition {
condition = var.input == "something incredibly specific"
error_message = "this should fail"
}
}