terraform-provider-gitea/vendor/github.com/hashicorp/terraform-exec/tfexec/workspace_select.go
Malar Invention 00ebcd295e add vendor
2022-04-03 09:37:16 +05:30

11 lines
345 B
Go

package tfexec
import "context"
// WorkspaceSelect represents the workspace select subcommand to the Terraform CLI.
func (tf *Terraform) WorkspaceSelect(ctx context.Context, workspace string) error {
// TODO: [DIR] param option
return tf.runTerraformCmd(ctx, tf.buildTerraformCmd(ctx, nil, "workspace", "select", "-no-color", workspace))
}