- Dynamic parameter names? A parameter's name can change. Should we throw a warning if it is not static?
- 18
terraform initnot run before apreviewfails to load a module. Should this prevent a preview? - 29 Providing input values for parameters that does not exist should return a warning.
- Unresolved modules should throw an error/warning that the preview is incomplete.
- 2 options with the same value should throw an error.
- 19 Ensure local disk is not accessible from terraform
- 20 Ensure no remote http requests for module fetching
- Plan hook replaces the same context for every block in a module. This work is duplicated and could be trimmed down.
- 21 Ensure no panics can occur during a preview.
- websocket should use shared cache. 2 template websockets using the same files should not load the files into memory twice.
- Make a template with 10,000 options. Test the performance.
- Add a parameter with 50 options to the demo template.
- searchable as well
- Demo template should be multi-select for the IDE selector.
- Allow a "force submit" to bypass any
previewerrors. This would defer to the terraform errors (basically the status quo today) - 22 Errors during the parsing should be reported.
- Errors during the hooks should be reported.
- Interactive shell to debug references
- Diagram the terraform flow
- When
datablocks are fetched resourceblocks are unavailable
- When
- Enumerate common error cases
- Nested blocks (within 1 module) should have correct context set via plan files. Since plan files are set on the parent, the parent of a sub-block is the incorrect level for a context.
- This might be already correct
- 23 Implement
validationblocks with a common code component to be reused by terraform provider? - Parameter values/defaults are only
stringtypes. - Parameter groups/sections. Required?
- Add a custom linter to prevent
cty.Type == cty.Type. Usecty.Type.Equals(cty.Type)instead.
- 24How will the hooks work if they cannot be merged upstream? Alternative?
- Load in plan state
- Semantics for parameter coder blocks
- Omitting
typebehavior, is there a default? - Backwards compatibility form controls. Default is radio vs dropdown.
- 25 Submodule references ignored in
countmeta arguments (and dynamic blocks)?
- Cleanup errors and directory handling code. DRY