mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-14 02:32:39 -06:00
e25c06c673
Signed-off-by: Syasusu <syasusu@163.com>
7 lines
251 B
HCL
7 lines
251 B
HCL
resource "null_resource" "a" {
|
|
provisioner "local-exec" {
|
|
when = invalid # ERROR: Invalid "when" keyword
|
|
on_failure = invalid # ERROR: Invalid "on_failure" keyword
|
|
lifecycle {} # ERROR: Reserved block type name in provisioner block
|
|
}
|
|
} |