mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
36d0a50427
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
39 lines
990 B
Go
39 lines
990 B
Go
package views
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/arguments"
|
|
"github.com/hashicorp/terraform/internal/plans"
|
|
"github.com/hashicorp/terraform/internal/terraform"
|
|
)
|
|
|
|
// FIXME: this is a temporary partial definition of the view for the show
|
|
// command, in place to allow access to the plan renderer which is now in the
|
|
// views package.
|
|
type Show interface {
|
|
Plan(plan *plans.Plan, schemas *terraform.Schemas)
|
|
}
|
|
|
|
// FIXME: the show view should support both human and JSON types. This code is
|
|
// currently only used to render the plan in human-readable UI, so does not yet
|
|
// support JSON.
|
|
func NewShow(vt arguments.ViewType, view *View) Show {
|
|
switch vt {
|
|
case arguments.ViewHuman:
|
|
return &ShowHuman{View: *view}
|
|
default:
|
|
panic(fmt.Sprintf("unknown view type %v", vt))
|
|
}
|
|
}
|
|
|
|
type ShowHuman struct {
|
|
View
|
|
}
|
|
|
|
var _ Show = (*ShowHuman)(nil)
|
|
|
|
func (v *ShowHuman) Plan(plan *plans.Plan, schemas *terraform.Schemas) {
|
|
renderPlan(plan, schemas, &v.View)
|
|
}
|