You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/test/variable_references/main.tftest.hcl

43 lines
817 B

variables {
default = "double"
ref_one = var.default
ref_two = run.secondary.value
}
run "primary" {
variables {
input_one = var.default
input_two = var.default
}
assert {
condition = test_resource.resource.value == "${var.default} - ${var.input_two}"
error_message = "bad concatenation"
}
}
run "secondary" {
variables {
input_one = var.default
input_two = var.global # This test requires this passed in as a global var.
}
assert {
condition = test_resource.resource.value == "double - ${var.global}"
error_message = "bad concatenation"
}
}
run "tertiary" {
variables {
input_one = var.ref_one
input_two = var.ref_two
}
assert {
condition = output.value == "double - double - ${var.global}"
error_message = "bad concatenation"
}
}