mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
11 lines
194 B
HCL
11 lines
194 B
HCL
|
|
run "test" {
|
|
variables {
|
|
input = jsonencode({key:"value"})
|
|
}
|
|
|
|
assert {
|
|
condition = jsondecode(test_resource.resource.value).key == "value"
|
|
error_message = "wrong value"
|
|
}
|
|
}
|