Files
opentf/internal/command/testdata/test/expect_runtime_check_fail/main.tf
2023-08-29 11:02:42 +03:00

8 lines
174 B
HCL

resource "test_resource" "resource" {}
check "check" {
assert {
condition = test_resource.resource.id == ""
error_message = "check block: resource has no id"
}
}