github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/builtin/providers/http/provider.go (about)

     1  package http
     2  
     3  import (
     4  	"github.com/hashicorp/terraform/helper/schema"
     5  	"github.com/hashicorp/terraform/terraform"
     6  )
     7  
     8  func Provider() terraform.ResourceProvider {
     9  	return &schema.Provider{
    10  		Schema: map[string]*schema.Schema{},
    11  
    12  		DataSourcesMap: map[string]*schema.Resource{
    13  			"http": dataSource(),
    14  		},
    15  
    16  		ResourcesMap: map[string]*schema.Resource{},
    17  	}
    18  }