mirror of https://github.com/rancher/dartboard.git
19 lines
553 B
Go
19 lines
553 B
Go
package examples
|
|
|
|
const (
|
|
ConfigurationFileKey = "tfexec"
|
|
)
|
|
|
|
type PlanOptions struct {
|
|
OutDir string `json:"outDir" yaml:"outDir"`
|
|
}
|
|
|
|
type Config struct {
|
|
WorkspaceName string `json:"workspaceName" yaml:"workspaceName"`
|
|
WorkingDir string `json:"workingDir" yaml:"workingDir"`
|
|
ExecPath string `json:"execPath" yaml:"execPath"`
|
|
VarFilePath string `json:"varFilePath" yaml:"varFilePath"`
|
|
PlanFilePath string `json:"planFilePath" yaml:"planFilePath"`
|
|
PlanOpts PlanOptions `json:"planOpts" yaml:"planOpts"`
|
|
}
|