mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
16 lines
222 B
HCL
16 lines
222 B
HCL
locals {
|
|
ami = "bar"
|
|
}
|
|
|
|
resource "test_instance" "foo" {
|
|
ami = local.ami
|
|
|
|
lifecycle {
|
|
precondition {
|
|
// failing condition
|
|
condition = local.ami != "bar"
|
|
error_message = "ami is bar"
|
|
}
|
|
}
|
|
}
|