mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
15 lines
248 B
HCL
15 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"
|
|
}
|
|
}
|