From 6376c4ca9b16ea1d62a234aeda0d76f96a4511f9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 16 Sep 2016 00:14:06 -0700 Subject: [PATCH] terraform: update comment --- terraform/transform_output.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/terraform/transform_output.go b/terraform/transform_output.go index b163860ae..1462f8cea 100644 --- a/terraform/transform_output.go +++ b/terraform/transform_output.go @@ -47,7 +47,11 @@ func (t *OutputTransformer) transform(g *Graph, m *module.Tree) error { // Add all outputs here for _, o := range os { - // Build the node + // Build the node. + // + // NOTE: For now this is just an "applyable" output. As we build + // new graph builders for the other operations I suspect we'll + // find a way to parameterize this, require new transforms, etc. node := &NodeApplyableOutput{ PathValue: normalizeModulePath(m.Path()), Config: o,