mirror of https://github.com/hashicorp/terraform
Merge pull request #1949 from hashicorp/b-module-cbd-computed-count-deadlock
core: fix deadlock w/ CBD + modulespull/1953/head
commit
e1b4bf3ce0
@ -0,0 +1,4 @@
|
||||
resource "aws_instance" "foo" {
|
||||
count = "${length("abc")}"
|
||||
lifecycle { create_before_destroy = true }
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
module "child" {
|
||||
source = "./child"
|
||||
}
|
||||
Loading…
Reference in new issue