35 lines
772 B
Terraform
35 lines
772 B
Terraform
|
resource "test" "test" {
|
||
|
lifecycle {
|
||
|
precondition {
|
||
|
condition = true # ERROR: Invalid precondition expression
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
postcondition {
|
||
|
condition = true # ERROR: Invalid postcondition expression
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
data "test" "test" {
|
||
|
lifecycle {
|
||
|
precondition {
|
||
|
condition = true # ERROR: Invalid precondition expression
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
postcondition {
|
||
|
condition = true # ERROR: Invalid postcondition expression
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
output "test" {
|
||
|
value = ""
|
||
|
|
||
|
precondition {
|
||
|
condition = true # ERROR: Invalid precondition expression
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|