mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
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.
5 lines
74 B
HCL
5 lines
74 B
HCL
variable "foo" {}
|
|
|
|
resource "test_instance" "foo" {
|
|
value = var.foo
|
|
}
|