Last active
June 5, 2019 00:33
-
-
Save andresvia/0ddd58161ecc62163f2bd0bfef09e79c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "core1" { | |
source = "git::https://gist.github.com/a0757d5396e36c10a5dee7ba00f16307.git//?ref=master" | |
} | |
// normally there are other things here... | |
// adding core2 just as filler | |
module "core2" { | |
source = "git::https://gist.github.com/a0757d5396e36c10a5dee7ba00f16307.git//?ref=master" | |
} | |
output "core" { | |
value = "core: ${module.core1.core}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment