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/ephemeral_input/main.tftest.hcl

20 lines
349 B

run "validate_ephemeral_input" {
variables {
foo = "bar"
}
assert {
condition = var.foo == "bar"
error_message = "Should be accessible"
}
}
run "validate_ephemeral_input_is_ephemeral" {
variables {
foo = "bar"
}
assert {
condition = ephemeralasnull(var.foo) == null
error_message = "Should be ephemeral"
}
}