terraform/terraform/resource_provider.go

49 lines
1.4 KiB
Go
Raw Normal View History

2014-05-24 21:04:43 +02:00
package terraform
// ResourceProvider is an interface that must be implemented by any
// resource provider: the thing that creates and manages the resources in
// a Terraform configuration.
type ResourceProvider interface {
// Configure configures the provider itself with the configuration
// given. This is useful for setting things like access keys.
//
// Configure returns an error if it occurred.
Configure(config map[string]interface{}) error
2014-05-24 21:04:43 +02:00
// Resources returns all the available resource types that this provider
// knows how to manage.
Resources() []ResourceType
// Apply applies a diff to a specific resource and returns the new
// resource state along with an error.
//
// If the resource state given has an empty ID, then a new resource
// is expected to be created.
//Apply(ResourceState, ResourceDiff) (ResourceState, error)
// Diff diffs a resource versus a desired state and returns
// a diff.
Diff(
*ResourceState,
2014-06-06 09:48:32 +02:00
map[string]interface{}) (*ResourceDiff, error)
}
2014-05-24 21:04:43 +02:00
// ResourceType is a type of resource that a resource provider can manage.
type ResourceType struct {
Name string
}
// ResourceProviderFactory is a function type that creates a new instance
// of a resource provider.
type ResourceProviderFactory func() (ResourceProvider, error)
func ProviderSatisfies(p ResourceProvider, n string) bool {
for _, rt := range p.Resources() {
if rt.Name == n {
return true
}
}
return false
}