mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
* evaluate: return diagnostics instead of unknown for uninitialised locals and resources * changelog * also input variables
10 lines
No EOL
128 B
HCL
10 lines
No EOL
128 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "one" {
|
|
value = var.input
|
|
}
|
|
|
|
resource "test_resource" "two" {} |