mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
* terraform test: Push evaluation of variables to as late as possible * Update internal/moduletest/hcl/variable_cache.go Co-authored-by: kmoe <5575356+kmoe@users.noreply.github.com> * address comments --------- Co-authored-by: kmoe <5575356+kmoe@users.noreply.github.com>
5 lines
81 B
HCL
5 lines
81 B
HCL
variable "input" {}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.input
|
|
}
|