Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Frost committed Apr 9, 2015
0 parents commit 43e3217
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions a/test.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# no outputs
1 change: 1 addition & 0 deletions b/b.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
variable "foo" {}
9 changes: 9 additions & 0 deletions test.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module "a" {
source = "a"
# this module has no outputs
}

module "b" {
source = "b"
foo = "${module.a.this_output_does_not_exist}"
}

0 comments on commit 43e3217

Please sign in to comment.