mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
13 lines
201 B
HCL
13 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"
|
|
}
|
|
}
|