diff --git a/command/plugin.go b/command/plugin.go index 416605a6b..cd5429d86 100644 --- a/command/plugin.go +++ b/command/plugin.go @@ -49,6 +49,7 @@ import ( virtualboxovfbuilder "github.com/hashicorp/packer/builder/virtualbox/ovf" vmwareisobuilder "github.com/hashicorp/packer/builder/vmware/iso" vmwarevmxbuilder "github.com/hashicorp/packer/builder/vmware/vmx" + yandexbuilder "github.com/hashicorp/packer/builder/yandex" alicloudimportpostprocessor "github.com/hashicorp/packer/post-processor/alicloud-import" amazonimportpostprocessor "github.com/hashicorp/packer/post-processor/amazon-import" artificepostprocessor "github.com/hashicorp/packer/post-processor/artifice" @@ -127,6 +128,7 @@ var Builders = map[string]packer.Builder{ "virtualbox-ovf": new(virtualboxovfbuilder.Builder), "vmware-iso": new(vmwareisobuilder.Builder), "vmware-vmx": new(vmwarevmxbuilder.Builder), + "yandex": new(yandexbuilder.Builder), } var Provisioners = map[string]packer.Provisioner{