mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-28 23:01:32 -05:00
16 lines
248 B
HCL
16 lines
248 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.input
|
|
}
|
|
|
|
check "expected_to_fail" {
|
|
assert {
|
|
condition = test_resource.resource.value != var.input
|
|
error_message = "this really should fail"
|
|
}
|
|
}
|