terraform/internal/command/testdata/apply-vars-auto/main.tf
James Bardin c128eaa092 don't validate apply variables from auto files
The CLI attempts to prevent the user from inputting non-ephemeral
variables during apply which don't match the stored plan values. Since
the user can't avoid variables parsed from auto-loaded files, we have to
ignore those values.
2024-12-09 12:13:08 -05:00

5 lines
74 B
HCL

variable "foo" {}
resource "test_instance" "foo" {
value = var.foo
}