command/plugin_list: Adding Alicloud to the plugin list file (#11292)

This commit is contained in:
Paul Stack 2017-01-19 17:01:14 +00:00 committed by GitHub
parent fa87945fac
commit 798bf60ef9
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
package command
import (
alicloudprovider "github.com/hashicorp/terraform/builtin/providers/alicloud"
archiveprovider "github.com/hashicorp/terraform/builtin/providers/archive"
atlasprovider "github.com/hashicorp/terraform/builtin/providers/atlas"
awsprovider "github.com/hashicorp/terraform/builtin/providers/aws"
@ -73,6 +74,7 @@ import (
)
var InternalProviders = map[string]plugin.ProviderFunc{
"alicloud": alicloudprovider.Provider,
"archive": archiveprovider.Provider,
"atlas": atlasprovider.Provider,
"aws": awsprovider.Provider,