terraform/helper/schema/resource_data.go

10 lines
258 B
Go

package schema
// ResourceData is used to query and set the attributes of a resource.
type ResourceData struct{}
// Get returns the data for the given key, or nil if the key doesn't exist.
func (d *ResourceData) Get(key string) interface{} {
return nil
}