mirror of https://github.com/hashicorp/terraform
parent
31716cee27
commit
1099e3f59f
@ -0,0 +1 @@
|
||||
variable "memory" { default = "foo" }
|
||||
@ -0,0 +1,8 @@
|
||||
module "child" {
|
||||
source = "./child"
|
||||
}
|
||||
|
||||
module "child2" {
|
||||
source = "./child"
|
||||
memory = "${module.child.memory_max}"
|
||||
}
|
||||
Loading…
Reference in new issue