forked from ruflin/filebeat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
23 lines (16 loc) · 731 Bytes
/
Vagrantfile
File metadata and controls
23 lines (16 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- mode: ruby -*-
# vi: set ft=ruby :
### Documentation
# This box is used as windows development and testing environment for filebeat
# Two users exist: Administartor and Vagrant. Both have the password: vagrant
Vagrant.configure(2) do |config|
# Windows Server 2012 R2
config.vm.box = "http://files.ruflin.com/vagrant/beats-20150925.box"
# Communicator for windows boxes
config.vm.communicator = "winrm"
# Port forward WinRM and RDP
config.vm.network :forwarded_port, guest: 3389, host: 3389
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
# Load current folder as C:\dev directory
config.vm.synced_folder ".", "/Gopath/src/github.com/elastic/filebeat"
end