core: Add new providers to internal list

This commit is contained in:
James Nugent 2016-05-04 14:49:10 -05:00
parent 7b6df27e4a
commit 9d77e0af6c
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import (
googleprovider "github.com/hashicorp/terraform/builtin/providers/google" googleprovider "github.com/hashicorp/terraform/builtin/providers/google"
herokuprovider "github.com/hashicorp/terraform/builtin/providers/heroku" herokuprovider "github.com/hashicorp/terraform/builtin/providers/heroku"
influxdbprovider "github.com/hashicorp/terraform/builtin/providers/influxdb" influxdbprovider "github.com/hashicorp/terraform/builtin/providers/influxdb"
libratoprovider "github.com/hashicorp/terraform/builtin/providers/librato"
mailgunprovider "github.com/hashicorp/terraform/builtin/providers/mailgun" mailgunprovider "github.com/hashicorp/terraform/builtin/providers/mailgun"
mysqlprovider "github.com/hashicorp/terraform/builtin/providers/mysql" mysqlprovider "github.com/hashicorp/terraform/builtin/providers/mysql"
nullprovider "github.com/hashicorp/terraform/builtin/providers/null" nullprovider "github.com/hashicorp/terraform/builtin/providers/null"
@ -35,6 +36,7 @@ import (
postgresqlprovider "github.com/hashicorp/terraform/builtin/providers/postgresql" postgresqlprovider "github.com/hashicorp/terraform/builtin/providers/postgresql"
powerdnsprovider "github.com/hashicorp/terraform/builtin/providers/powerdns" powerdnsprovider "github.com/hashicorp/terraform/builtin/providers/powerdns"
rundeckprovider "github.com/hashicorp/terraform/builtin/providers/rundeck" rundeckprovider "github.com/hashicorp/terraform/builtin/providers/rundeck"
softlayerprovider "github.com/hashicorp/terraform/builtin/providers/softlayer"
statuscakeprovider "github.com/hashicorp/terraform/builtin/providers/statuscake" statuscakeprovider "github.com/hashicorp/terraform/builtin/providers/statuscake"
templateprovider "github.com/hashicorp/terraform/builtin/providers/template" templateprovider "github.com/hashicorp/terraform/builtin/providers/template"
terraformprovider "github.com/hashicorp/terraform/builtin/providers/terraform" terraformprovider "github.com/hashicorp/terraform/builtin/providers/terraform"
@ -75,6 +77,7 @@ var InternalProviders = map[string]plugin.ProviderFunc{
"google": googleprovider.Provider, "google": googleprovider.Provider,
"heroku": herokuprovider.Provider, "heroku": herokuprovider.Provider,
"influxdb": influxdbprovider.Provider, "influxdb": influxdbprovider.Provider,
"librato": libratoprovider.Provider,
"mailgun": mailgunprovider.Provider, "mailgun": mailgunprovider.Provider,
"mysql": mysqlprovider.Provider, "mysql": mysqlprovider.Provider,
"null": nullprovider.Provider, "null": nullprovider.Provider,
@ -83,6 +86,7 @@ var InternalProviders = map[string]plugin.ProviderFunc{
"postgresql": postgresqlprovider.Provider, "postgresql": postgresqlprovider.Provider,
"powerdns": powerdnsprovider.Provider, "powerdns": powerdnsprovider.Provider,
"rundeck": rundeckprovider.Provider, "rundeck": rundeckprovider.Provider,
"softlayer": softlayerprovider.Provider,
"statuscake": statuscakeprovider.Provider, "statuscake": statuscakeprovider.Provider,
"template": templateprovider.Provider, "template": templateprovider.Provider,
"terraform": terraformprovider.Provider, "terraform": terraformprovider.Provider,