Files
opentf/website/docs/cli/commands/test/examples/plan/main.tftest.hcl
2024-05-28 13:40:19 -04:00

13 lines
242 B
HCL

run "test" {
command = plan
plan_options {
refresh = false
}
variables {
image_name = "myapp"
}
assert {
condition = docker_image.build.name == "myapp"
error_message = "Missing build resource"
}
}