pulumi/pkg/resource/deploy/target.go
2017-06-26 14:46:34 -07:00

14 lines
378 B
Go

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