15 lines
280 B
Go
15 lines
280 B
Go
|
package template
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/helper/schema"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func Provider() terraform.ResourceProvider {
|
||
|
return &schema.Provider{
|
||
|
ResourcesMap: map[string]*schema.Resource{
|
||
|
"template_file": resource(),
|
||
|
},
|
||
|
}
|
||
|
}
|