mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
15 lines
234 B
HCL
15 lines
234 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.input
|
|
|
|
lifecycle {
|
|
postcondition {
|
|
condition = self.value != var.input
|
|
error_message = "this really should fail"
|
|
}
|
|
}
|
|
}
|