pulumi/pkg/resource/deploy/target.go
joeduffy f189c40f35 Wire up Lumi to the new runtime strategy
🔥 🔥 🔥  🔥 🔥 🔥

Getting closer on #311.
2017-09-04 11:35:21 -07:00

14 lines
346 B
Go

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