mirror of https://github.com/pulumi/pulumi.git
17 lines
537 B
Go
17 lines
537 B
Go
// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
|
|
|
|
package deploy
|
|
|
|
import (
|
|
"github.com/pulumi/pulumi/pkg/resource/config"
|
|
"github.com/pulumi/pulumi/pkg/tokens"
|
|
)
|
|
|
|
// Target represents information about a deployment target.
|
|
type Target struct {
|
|
Name tokens.QName // the target stack name.
|
|
Config config.Map // optional configuration key/value pairs.
|
|
Decrypter config.Decrypter // decrypter for secret configuration values.
|
|
Snapshot *Snapshot // the last snapshot deployed to the target.
|
|
}
|