Add public key to Vagrant
After copying a file to Vagrant and creating a basic file structure. We can continue with our series.
So, in this post, we are going to talk about the following topics:
Assign an IP address Add your public key Access to vagrant machine without vagrant ssh For the first point and taking the file structure previously mentioned, we modify as follow:
Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "public_network", bridge: "en0: Wi-Fi (AirPort)", auto_config: false config.
[Read More]