forked from osquery/osquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
164 lines (161 loc) · 4.56 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
targets = {
"debian7" => {
"box" => "deb/wheezy-amd64"
},
"debian8" => {
"box" => "deb/jessie-amd64"
},
"centos6.5" => {
"box" => "bento/centos-6.7"
},
"centos7.1" => {
"box" => "bento/centos-7.1"
},
"ubuntu15.04" => {
"box" => "ubuntu/vivid64"
},
"ubuntu14" => {
"box" => "ubuntu/trusty64"
},
"ubuntu12" => {
"box" => "ubuntu/precise64"
},
"freebsd10" => {
"box" => "bento/freebsd-10.2"
},
"aws-amazon2015.03" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-1ecae776",
"us-west-1" => "ami-d114f295",
"us-west-2" => "ami-e7527ed7"
},
"username" => "ec2-user"
},
"aws-rhel7.1" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-12663b7a",
"us-west-1" => "ami-a540a5e1",
"us-west-2" => "ami-4dbf9e7d"
},
"username" => "ec2-user"
},
"aws-rhel6.5" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-1643ff7e",
"us-west-1" => "ami-2b171d6e",
"us-west-2" => "ami-7df0bd4d"
},
"username" => "ec2-user"
},
"aws-ubuntu10" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-1e6f6176",
"us-west-1" => "ami-250fe361",
"us-west-2" => "ami-1b2a1c2b"
},
"username" => "ubuntu"
},
"aws-oracle6.6" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-20e4b748",
"us-west-1" => "ami-f3d83db7",
"us-west-2" => "ami-b34f6e83"
},
"username" => "ec2-user"
},
"aws-oracle5.11" => {
"box" => "andytson/aws-dummy",
"regions" => {
"us-east-1" => "ami-0ecd7766",
"us-west-1" => "ami-4b00150e",
"us-west-2" => "ami-6b57185b"
},
"username" => "root"
},
}
Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |v|
if ENV['OSQUERY_BUILD_CPUS']
v.cpus = ENV['OSQUERY_BUILD_CPUS'].to_i
else
v.cpus = 2
end
v.memory = 4096
end
config.vm.provider :aws do |aws, override|
# Required. Credentials for AWS API.
aws.access_key_id = ENV['AWS_ACCESS_KEY_ID']
aws.secret_access_key = ENV['AWS_SECRET_ACCESS_KEY']
# Name of AWS keypair for launching and accessing the EC2 instance.
if [ ENV['AWS_KEYPAIR_NAME'] ]
aws.keypair_name = ENV['AWS_KEYPAIR_NAME']
end
override.ssh.private_key_path = ENV['AWS_SSH_PRIVATE_KEY_PATH']
# Name of AWS security group that allows TCP/22 from vagrant host.
if [ ENV['AWS_SECURITY_GROUP'] ]
aws.security_groups = [ ENV['AWS_SECURITY_GROUP'] ]
end
# Set this to the AWS region for EC2 instances.
if ENV['AWS_DEFAULT_REGION']
aws.region = ENV['AWS_DEFAULT_REGION']
else
aws.region = "us-east-1"
end
# Set this to the desired AWS instance type.
if ENV['AWS_INSTANCE_TYPE']
aws.instance_type = ENV['AWS_INSTANCE_TYPE']
else
aws.instance_type = "m3.large"
end
targets["active_region"] = aws.region
# If using a VPC, optionally set a SUBNET_ID.
if ENV['AWS_SUBNET_ID']
aws.subnet_id = ENV['AWS_SUBNET_ID']
end
end
targets.each do |name, target|
box = target["box"]
config.vm.define name do |build|
build.vm.box = box
if name.start_with?('aws-')
build.vm.provider :aws do |aws, override|
if aws.subnet_id != nil
aws.associate_public_ip = true
end
aws.ami = target['regions'][targets["active_region"]]
aws.user_data = [
"#!/bin/bash",
"echo 'Defaults:" + target['username'] +
" !requiretty' > /etc/sudoers.d/999-vagrant-cloud-init-requiretty",
"chmod 440 /etc/sudoers.d/999-vagrant-cloud-init-requiretty"
].join("\n")
override.ssh.username = target['username']
aws.tags = { 'Name' => 'osquery-vagrant-' + name }
end
build.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: [
"build",
".git/objects",
".git/modules/third-party/objects"
]
end
if name == 'freebsd10'
# configure the NICs
build.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
end
# Private network for NFS
build.vm.network :private_network, ip: "192.168.56.101"
build.vm.synced_folder ".", "/vagrant", type: "nfs"
build.vm.provision "shell",
inline: "pkg install -y gmake"
end
end
end
end