pulumi/pkg/resource/deploy/target.go
Joe Duffy f6e694c72b Rename pulumi-fabric to pulumi
This includes a few changes:

* The repo name -- and hence the Go modules -- changes from pulumi-fabric to pulumi.

* The Node.js SDK package changes from @pulumi/pulumi-fabric to just pulumi.

* The CLI is renamed from lumi to pulumi.
2017-09-21 19:18:21 -07:00

13 lines
365 B
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package deploy
import (
"github.com/pulumi/pulumi/pkg/tokens"
)
// Target represents information about a deployment target.
type Target struct {
Name tokens.QName // the target environment name.
Config map[tokens.ModuleMember]string // optional configuration key/values.
}