<aside> 🐢 automation is an important factor in terms of security b/c it makes sure you have the same security across devices, can audit diff machines settings
</aside>
—> proxmox - fully free open-source ec2-like hosting
Virtual Box - a Hypervisor like the aws console, shows machines locally
Vagrant talks to Virtual Box, can talk to multiple hypervisors (e.g. aws) with same vagrantfiles
Vagrantfile - config stuff (just ruby)
"ubuntu/bionic64"
like github —> vendor/package, downloaded from the internet if the OS doesn't exist locally
vagrant.configure(") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "private_network", type:"dhcp" # different OSs handle dhcp differently, but Vagrant knows about this
config.vm.provision "shell", path: "provision/common.sh" # commonly provision
config.vm.define "web" do |c| # Computer 1 called 'web'
c.vm.box = "debian/buster64" # specify a different vendor/package
end
config.vm.define "app" do |c| # Computer 2 called 'app'
c,vm.provision "shell", path: "provision/app.sh" # specific provision
end
end
automatic sshing thru vagrant ssh
, don't need to use VirtualBox's VM editor
vagrant ssh web
- ssh into the vm called 'web'vagrant
password: vagrant
vagrant createvm
starts the vms
vagrant destroy
kills them
<aside> 🐌 - nginx is a popular webserver! production level hosting
</aside>
#!/bin/bash
# export DEBIAN_FRONTEND=noninteractive #^ so it won't prompt input
apt-get update
apt-get —-yes install nginx
#^ with the flag because it won't be interactive and apt-get asks "do you want to install Y/n"
---
- name: Install Webserver.
hosts: all # or web or 1.2.3.4 or something more specific
become: true # to say we are running this as root, kinda like sudo
tasks:
- name: Install Nginx.
package: # module
name: nginx
state: present
vagrant.configure(") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "private_network", type:"dhcp"
config.vm.define "web" do |c|
c,vm.provision "ansible_local" do |a|
a.playbook = "provision/web.yaml"
end
end
end