16 lines
326 B
Go
16 lines
326 B
Go
package external
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func Provider() terraform.ResourceProvider {
|
|
return &schema.Provider{
|
|
DataSourcesMap: map[string]*schema.Resource{
|
|
"external": dataSource(),
|
|
},
|
|
ResourcesMap: map[string]*schema.Resource{},
|
|
}
|
|
}
|