Vagrant.configure(2) do |config|
config.vm.define "elastic" do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.synced_folder '.', '/home/vagrant/hws'
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :private_network, ip: '192.168.2.76'
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 1
v.name = "elastic"
end
end
end
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #4 | 25621 | Jen Bottom | Integrating sone fixes from dev to main | ||
| #3 | 23660 | Jen Bottom | Integrating from dev to main | ||
| #2 | 23490 | Jen Bottom | Integrating changes for HTH and ElasticSearch Vagrant environments to main stream | ||
| #1 | 23487 | Jen Bottom | Integrating ElasticSearch setup files from dev to main |