github.com/gabrielperezs/terraform@v0.7.0-rc2.0.20160715084931-f7da2612946f/command/internal_plugin_core.go (about)

     1  // +build core
     2  
     3  // This file is included whenever the 'core' build tag is specified. This is
     4  // used by make core-dev and make core-test to compile a build significantly
     5  // more quickly, but it will not include any provider or provisioner plugins.
     6  
     7  package command
     8  
     9  import "github.com/hashicorp/terraform/plugin"
    10  
    11  var InternalProviders = map[string]plugin.ProviderFunc{}
    12  
    13  var InternalProvisioners = map[string]plugin.ProvisionerFunc{}