terraform/internal/command/testdata/test/deferred_changes/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
96 B
Terraform
Raw Permalink Normal View History

variable "defer" {
type = bool
}
resource "test_resource" "resource" {
defer = var.defer
}