mirror of https://github.com/pulumi/pulumi.git
14 lines
359 B
Go
14 lines
359 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 stack name.
|
|
Config map[tokens.ModuleMember]string // optional configuration key/values.
|
|
}
|