mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
21 lines
288 B
HCL
21 lines
288 B
HCL
variables {
|
|
managed_id = "B853C121"
|
|
}
|
|
|
|
run "setup" {
|
|
module {
|
|
source = "./setup"
|
|
}
|
|
|
|
variables {
|
|
value = "Hello, world!"
|
|
id = "B853C121"
|
|
}
|
|
}
|
|
|
|
run "test" {
|
|
assert {
|
|
condition = test_resource.created.value == "Hello, world!"
|
|
error_message = "bad value"
|
|
}
|
|
}
|