From 798bf60ef98d4da4f62b280694e271df452ee05c Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Thu, 19 Jan 2017 17:01:14 +0000 Subject: [PATCH] command/plugin_list: Adding Alicloud to the plugin list file (#11292) --- command/internal_plugin_list.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/internal_plugin_list.go b/command/internal_plugin_list.go index 95ca582b4..9d5020951 100644 --- a/command/internal_plugin_list.go +++ b/command/internal_plugin_list.go @@ -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,