mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
* stacks: emit events for deferred actions * deferral allowed is always on * Update internal/rpcapi/stacks.go Co-authored-by: Daniel Schmidt <danielmschmidt92@gmail.com> --------- Co-authored-by: Daniel Schmidt <danielmschmidt92@gmail.com>
19 lines
304 B
HCL
19 lines
304 B
HCL
terraform {
|
|
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "deferred" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
resource "testing_deferred_resource" "resource" {
|
|
id = "hello"
|
|
value = "world"
|
|
deferred = var.deferred
|
|
}
|