Skip to content

Commit 246a740

Browse files
committed
Allow external access to ES in AtoM Vagrantfiles
1 parent 811b104 commit 246a740

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

playbooks/atom-trusty/Vagrantfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4040
"atom_user" => "vagrant",
4141
"atom_group" => "vagrant",
4242
"atom_environment_type" => "development",
43-
"atom_flush_data" => "yes"
43+
"atom_flush_data" => "yes",
44+
"elasticsearch_network_bind_host" => "0.0.0.0"
4445
}
4546
ansible.verbose = 'v'
4647
ansible.raw_arguments = ENV['ANSIBLE_ARGS']

playbooks/atom-xenial/Vagrantfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4949
"atom_user" => "vagrant",
5050
"atom_group" => "vagrant",
5151
"atom_environment_type" => "development",
52-
"atom_flush_data" => "yes"
52+
"atom_flush_data" => "yes",
53+
"es_config" => {
54+
"network.host" => "0.0.0.0"
55+
}
5356
}
5457
ansible.verbose = 'v'
5558
ansible.raw_arguments = ENV['ANSIBLE_ARGS']

0 commit comments

Comments
 (0)