terraform/dag
Martin Atkins c937c06a03 terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.

The three main goals here are:
- Use the configuration models from the "configs" package instead of the
  older models in the "config" package, which is now deprecated and
  preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
  new "lang" package, instead of the Interpolator type and related
  functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
  rather than hand-constructed strings. This is not critical to support
  the above, but was a big help during the implementation of these other
  points since it made it much more explicit what kind of address is
  expected in each context.

Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.

I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-10-16 18:46:46 -07:00
..
dag.go dag: node visits return diagnostics rather than errors 2018-10-16 18:44:26 -07:00
dag_test.go dag: node visits return diagnostics rather than errors 2018-10-16 18:44:26 -07:00
dot.go dag: string DotOpts through to vertex 2017-01-08 11:59:18 -08:00
dot_test.go dag: string DotOpts through to vertex 2017-01-08 11:59:18 -08:00
edge.go dag: export more things 2015-02-19 12:08:07 -08:00
edge_test.go dag: Remove, RemoveEdge, DownEdges, UpEdges 2015-02-19 12:07:54 -08:00
graph.go Add DebugVisitInfo 2016-11-15 10:39:08 -05:00
graph_test.go dag: test for EdgesFrom, EdgesTo 2016-10-19 13:38:53 -07:00
marshal.go faster DAG transitive reduction 2017-10-03 11:24:59 -04:00
marshal_test.go dag: node visits return diagnostics rather than errors 2018-10-16 18:44:26 -07:00
set.go dag: method for filtering a set on arbitrary criteria 2017-05-11 11:57:46 -07:00
set_test.go dag: method for filtering a set on arbitrary criteria 2017-05-11 11:57:46 -07:00
tarjan.go dag: fix walk order issue, scc issues 2015-02-19 12:07:55 -08:00
tarjan_test.go dag: Remove, RemoveEdge, DownEdges, UpEdges 2015-02-19 12:07:54 -08:00
walk.go terraform: ugly huge change to weave in new HCL2-oriented types 2018-10-16 18:46:46 -07:00
walk_test.go dag: node visits return diagnostics rather than errors 2018-10-16 18:44:26 -07:00