2014-05-30 02:28:38 +02:00
|
|
|
package aws
|
|
|
|
|
2014-06-03 23:26:31 +02:00
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
2014-05-30 02:28:38 +02:00
|
|
|
type ResourceProvider struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ResourceProvider) Configure(map[string]interface{}) ([]string, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2014-06-03 23:26:31 +02:00
|
|
|
|
|
|
|
func (p *ResourceProvider) Resources() []terraform.ResourceType {
|
|
|
|
return nil
|
|
|
|
}
|