pulumi/pkg/workspace/settings.go
joeduffy 35aa6b7559 Rename pulumi/lumi to pulumi/pulumi-fabric
We are renaming Lumi to Pulumi Fabric.  This change simply renames the
pulumi/lumi repo to pulumi/pulumi-fabric, without the CLI tools and other
changes that will follow soon afterwards.
2017-08-02 09:25:22 -07:00

14 lines
421 B
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package workspace
import (
"github.com/pulumi/pulumi-fabric/pkg/tokens"
)
// Settings defines workspace settings shared amongst many related projects.
type Settings struct {
Namespace string `json:"namespace,omitempty"` // an optional namespace.
Env tokens.QName `json:"env,omitempty"` // an optional default environment to use.
}