mirror of https://github.com/hashicorp/terraform
Merge pull request #620 from Banno/fix-multi-var-module-state
Fix for multivars when modulestate not created yetpull/627/head
commit
cd50d71538
@ -1,4 +1,9 @@
|
||||
resource "aws_instance" "parent" {
|
||||
count = 2
|
||||
}
|
||||
|
||||
module "child" {
|
||||
source = "./child"
|
||||
source = "./child"
|
||||
things = "${join(",", aws_instance.bar.*.private_ip)}"
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in new issue