Add skeleton functions and API for refactored renderer (#32368)

* prep for processing the structured run output

* undo unwanted change to a json key

* Add skeleton functions and API for refactored renderer

* goimports

* Fix documentation of the RenderOpts struct

* Add README explaining implementation details for renderer and plans for future expansion

* Update internal/command/jsonformat/README.md

Co-authored-by: Alisdair McDiarmid <alisdair@users.noreply.github.com>

* address comments

Co-authored-by: Alisdair McDiarmid <alisdair@users.noreply.github.com>
This commit is contained in:
Liam Cervante
2023-01-09 11:05:25 +01:00
committed by GitHub
parent b917154a97
commit aff7d360e1
8 changed files with 497 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package differ
import (
"github.com/hashicorp/terraform/internal/command/jsonformat/change"
"github.com/hashicorp/terraform/internal/command/jsonprovider"
)
func (v Value) ComputeChangeForAttribute(attribute *jsonprovider.Attribute) change.Change {
panic("not implemented")
}