Tim Vernum 47213f5675 [Security] Add SAML authentication support (elastic/x-pack-elasticsearch#3646)
Introduces:

- SAML Realm
- REST & Transport actions to support SAML single signon / signout
- Tests for above
- More XML than you ever wanted to see.

Original commit: elastic/x-pack-elasticsearch@b0fe7bb652
2018-01-21 08:43:00 +10:00

25 lines
780 B
Ruby

Vagrant.configure("2") do |config|
config.vm.define "test.shibboleth.elastic.local" do |config|
config.vm.box = "elastic/ubuntu-16.04-x86_64"
end
config.vm.hostname = "localhost"
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
config.vm.network "forwarded_port", guest: 389, host: 60389, protocol: "tcp"
config.vm.network "forwarded_port", guest: 636, host: 60636, protocol: "tcp"
config.vm.network "forwarded_port", guest: 8080, host: 60080, protocol: "tcp"
config.vm.network "forwarded_port", guest: 8443, host: 60443, protocol: "tcp"
config.vm.provision "ansible_local" do |ansible|
ansible.verbose = "v"
ansible.playbook = "src/main/resources/provision/playbook.yml"
ansible.install_mode = "pip"
end
end