Vagrant - Environnements de dev
Find a file
Chris Roberts 288f8ba552 Update path check for ssl helper
A path check is done prior to loading the vagrant ssl helper, but it was
only checking for a file with a `.so` suffix so `.bundle` files on macos
would be ignored and the helper not loaded.

Include both paths when checking for the library existence.
2023-10-18 17:44:18 -07:00
.ci Fix development commit content 2023-10-16 09:22:28 -07:00
.github Update checkout and add extra information 2023-10-13 16:34:18 -07:00
bin Use remote plugin module when in server mode 2022-04-25 12:26:13 -05:00
binstubs Updates to make vagrant-spec work in CI 2022-04-25 12:26:50 -05:00
builtin Adds initial HCP config support 2023-09-07 17:26:10 -07:00
cmd/vagrant add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
contrib add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
ext/vagrant/vagrant_ssl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
internal Adds initial HCP config support 2023-09-07 17:26:10 -07:00
keys Add ed25519 insecure private key 2023-06-26 15:06:02 -07:00
lib Update path check for ssl helper 2023-10-18 17:44:18 -07:00
nix Update flake 2023-09-07 16:20:45 -07:00
plugins Add architecture support for boxes 2023-09-14 16:15:03 -07:00
scripts add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
tasks Update test output to only show progress 2023-09-14 16:15:02 -07:00
templates Update quotation marks 2023-10-13 13:18:05 -07:00
test Adjust installation for unknown default architecture 2023-09-26 16:20:37 -07:00
thirdparty/proto Update git submodule location 2022-04-25 12:26:25 -05:00
website Release 2.4.0 2023-10-16 16:20:13 +00:00
.copywrite.hcl Apply license adjustments and fixes 2023-08-10 17:05:19 -07:00
.envrc Prevent complaints while in dev 2023-09-07 16:20:45 -07:00
.gitignore Update ignore file 2023-06-07 17:44:24 -07:00
.gitmodules Update git submodule location 2022-04-25 12:26:25 -05:00
.runner.sh add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
.vimrc .vimrc with vagrant tabstop settings 2013-10-22 08:24:58 +02:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md Release 2.4.0 2023-10-16 16:20:13 +00:00
Dockerfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
flake.lock Update flake 2023-09-07 16:20:45 -07:00
flake.nix Update flake 2023-09-07 16:20:45 -07:00
Gemfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
gen.go add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
go.mod Adds initial HCP config support 2023-09-07 17:26:10 -07:00
go.sum Adds initial HCP config support 2023-09-07 17:26:10 -07:00
LICENSE Release 2.4.0 2023-10-16 16:20:13 +00:00
Makefile Add a force-test target to disable caching 2023-06-12 09:33:00 -07:00
Rakefile Adjust extension location for correct install path 2023-06-21 09:43:28 -07:00
README.md Add note about curl to README 2020-11-06 15:42:10 -08:00
RELEASE.md Update new release steps 2023-10-16 09:25:14 -07:00
shell.nix Start with straight copy/paste from waypoint project 2022-04-25 12:25:55 -05:00
tools.go Update Makefile output location and update targets 2023-05-17 14:37:46 -07:00
vagrant-config.hcl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
vagrant-spec.config.example.rb add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
vagrant.gemspec Update constraint on vagrant_cloud library 2023-09-25 15:09:29 -07:00
Vagrantfile Restore Vagrant development Vagrantfile 2022-07-28 14:12:50 -05:00
version.txt Release 2.4.0 2023-10-16 16:20:13 +00:00

Vagrant

Vagrant is a tool for building and distributing development environments.

Development environments managed by Vagrant can run on local virtualized platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack, or in containers such as with Docker or raw LXC.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

Quick Start

Package dependencies: Vagrant requires bsdtar and curl to be available on your system PATH to run successfully.

For the quick-start, we'll bring up a development machine on VirtualBox because it is free and works on all major platforms. Vagrant can, however, work with almost any system such as OpenStack, VMware, Docker, etc.

First, make sure your development machine has VirtualBox installed. After this, download and install the appropriate Vagrant package for your OS.

To build your first virtual environment:

vagrant init hashicorp/bionic64
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the bionic64 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide

To learn how to build a fully functional development environment, follow the getting started guide.

Installing from Source

If you want the bleeding edge version of Vagrant, we try to keep main pretty stable and you're welcome to give it a shot. Please review the installation page here.

Contributing to Vagrant

Please take time to read the HashiCorp Community Guidelines and the Vagrant Contributing Guide.

Then you're good to go!