github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/custom_condition_outputs/main.tf (about) 1 2 variable "input" { 3 type = string 4 } 5 6 output "output" { 7 value = var.input 8 9 precondition { 10 condition = var.input == "something incredibly specific" 11 error_message = "this should fail" 12 } 13 }