39 lines
764 B
Terraform
39 lines
764 B
Terraform
|
terraform {
|
||
|
experiments = [preconditions_postconditions] # WARNING: Experimental feature "preconditions_postconditions" is active
|
||
|
}
|
||
|
|
||
|
resource "test" "test" {
|
||
|
lifecycle {
|
||
|
precondition {
|
||
|
condition = path.module != ""
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
postcondition {
|
||
|
condition = path.module != ""
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
data "test" "test" {
|
||
|
lifecycle {
|
||
|
precondition {
|
||
|
condition = path.module != ""
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
postcondition {
|
||
|
condition = path.module != ""
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
output "test" {
|
||
|
value = ""
|
||
|
|
||
|
precondition {
|
||
|
condition = path.module != ""
|
||
|
error_message = "Must be true."
|
||
|
}
|
||
|
}
|