diff --git a/bts_annee_2/vagrantfiles/Vagrantfile b/bts_annee_2/vagrantfiles/Vagrantfile index 8a64af6..7bb97fa 100644 --- a/bts_annee_2/vagrantfiles/Vagrantfile +++ b/bts_annee_2/vagrantfiles/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure("2") do |config| # Every Vagrant development environment requires a box. You can search for # boxes at https://vagrantcloud.com/search. - config.vm.box = "debian/bookworm64" + config.vm.box = "remplacer" config.vm.hostname = "renommer" # Disable automatic box update checking. If you disable this, then @@ -59,7 +59,7 @@ Vagrant.configure("2") do |config| # config.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine - vb.gui = true + vb.gui = false # Customize the amount of memory on the VM: vb.memory = "1024" @@ -74,6 +74,6 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL timedatectl set-timezone Europe/Paris apt-get update - apt-get install -y vim wget curl neovim mc git + apt-get install -y vim wget curl neovim mc git neofetch SHELL end \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/wazuh/.vagrant/rgloader/loader.rb b/bts_annee_2/vagrantfiles/wazuh/.vagrant/rgloader/loader.rb new file mode 100644 index 0000000..b6c81bf --- /dev/null +++ b/bts_annee_2/vagrantfiles/wazuh/.vagrant/rgloader/loader.rb @@ -0,0 +1,12 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: BUSL-1.1 + +# This file loads the proper rgloader/loader.rb file that comes packaged +# with Vagrant so that encoded files can properly run with Vagrant. + +if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] + require File.expand_path( + "rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) +else + raise "Encoded files can't be read outside of the Vagrant installer." +end diff --git a/bts_annee_2/vagrantfiles/wazuh/Vagrantfile b/bts_annee_2/vagrantfiles/wazuh/Vagrantfile new file mode 100644 index 0000000..423364a --- /dev/null +++ b/bts_annee_2/vagrantfiles/wazuh/Vagrantfile @@ -0,0 +1,56 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + # Base VM OS configuration. + config.vm.box = "alvistack/ubuntu-24.04" + config.ssh.insert_key = false + config.vm.synced_folder '.', '/vagrant', disabled: true + + # General VirtualBox VM configuration. + config.vm.provider :virtualbox do |v| + v.memory = 1024 + v.cpus = 1 + v.linked_clone = true + v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + v.customize ["modifyvm", :id, "--ioapic", "on"] + end + + # wazuh. + config.vm.define "wazuh" do |wazuh| + wazuh.vm.hostname = "wazuh" + wazuh.vm.network :private_network, ip: "192.168.56.5" + wazuh.vm.provider :virtualbox do |v| + v.customize ["modifyvm", :id, "--memory", 4096] + v.cpus = 2 + end + wazuh.vm.provision "shell", + inline: "sudo apt-get update ; sudo apt-get install -y vim curl wget" + wazuh.vm.provision "ansible" do |ansible| + ansible.extra_vars = { + wazuh_db_name: "wazuh", + wazuh_db_user: "wazuh-server", + wazuh_db_passwd: "wazuh-passwd", + } + ansible.playbook = "provision/setup-wazuh.yml" + end + end + # wazuh-cli. + config.vm.define "wazucli" do |wazucli| + wazucli.vm.hostname = "wazu-cli" + wazucli.vm.network :private_network, ip: "192.168.56.2" + wazucli.vm.provider :virtualbox do |v| + v.customize ["modifyvm", :id, "--memory", 1024] + end + wazucli.vm.provision "shell", + inline: "sudo apt-get update ; sudo apt-get install -y vim curl wget" + wazucli.vm.provision "ansible" do |ansible| + ansible.extra_vars = { + srv_name: "wazu-cli", + srv_ip: "192.168.56.2", + } + ansible.playbook = "provision/setup-wazu-cli.yml" + end + end +end +