(filename string)
| 35 | // easily swap this out for an alternative implementation later on. |
| 36 | type parseHCLFiler interface { |
| 37 | ParseHCLFile(filename string) (*hcl.File, hcl.Diagnostics) |
| 38 | } |
| 39 | |
| 40 | // Parser parses a Terraform module on disk. |
no outgoing calls
no test coverage detected