github.com/richardbowden/terraform@v0.6.12-0.20160901200758-30ea22c25211/builtin/providers/archive/provider.go (about) 1 package archive 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 ResourcesMap: map[string]*schema.Resource{ 13 "archive_file": resourceArchiveFile(), 14 }, 15 } 16 }