terraform: add type to Ephemeral

This commit is contained in:
Mitchell Hashimoto 2016-04-26 11:09:46 -07:00
parent 531f609564
commit 1040cb7cdb
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 6 additions and 0 deletions

View File

@ -1315,6 +1315,12 @@ type EphemeralState struct {
// used to connect to the resource for provisioning. For example,
// this could contain SSH or WinRM credentials.
ConnInfo map[string]string `json:"-"`
// Type is used to specify the resource type for this instance. This is only
// required for import operations (as documented). If the documentation
// doesn't state that you need to set this, then don't worry about
// setting it.
Type string `json:"-"`
}
func (e *EphemeralState) init() {