func()

in setuptest/initplanshow.go [53:62]


func (dtvf DirTypeWithVarFiles) InitPlanShow(t *testing.T) (Response, error) {
	resp, err := setup(t, dtvf.RootDir, dtvf.TestDir, nil)
	if err != nil {
		return resp, err
	}
	resp.Options.VarFiles = dtvf.VarFiles
	plan, err := terraform.InitAndPlanAndShowWithStructE(t, resp.Options)
	resp.PlanStruct = plan
	return resp, err
}