17 lines
329 B
Go
17 lines
329 B
Go
|
package archive
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/helper/schema"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func Provider() terraform.ResourceProvider {
|
||
|
return &schema.Provider{
|
||
|
Schema: map[string]*schema.Schema{},
|
||
|
|
||
|
ResourcesMap: map[string]*schema.Resource{
|
||
|
"archive_file": resourceArchiveFile(),
|
||
|
},
|
||
|
}
|
||
|
}
|