opentofu/internal/command/testdata/test/expect_failures_outputs/main.tf

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"
}
}