From 2e3380e1aaea474ac9afb81a9f4a932899668793 Mon Sep 17 00:00:00 2001 From: Andrew Kroh Date: Thu, 7 Jun 2018 19:32:31 -0400 Subject: [PATCH] Add Windows 2016 to Vagrantfile This image requires membership in the Elastic organization in order to be able to pull it. --- Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 2d5cae6b7931..e161ec5f12b8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -200,6 +200,16 @@ Vagrant.configure(2) do |config| c.vm.synced_folder ".", "/vagrant", type: "virtualbox" end + # Windows Server 2016 + config.vm.define "win2016", primary: true do |machine| + machine.vm.box = "elastic/windows-2016-x86_64" + machine.vm.provision "shell", inline: $winPsProvision + + machine.vm.provider "virtualbox" do |v| + v.memory = 4096 + end + end + end # -*- mode: ruby -*-