Last active
August 29, 2015 14:08
-
-
Save bemosior/39c3866ea014d6e60521 to your computer and use it in GitHub Desktop.
IaC Development Workflow - Vagrant Init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Let's assume my SaltStack code is in a folder called `salt-code` and it contains | |
# `formulas`, `pillar`, `salt`, and `vagrant` folders. We're going to get started | |
# with a basic Ubuntu 12.04 box (in Vagrant Cloud as hashicorp/precise64). | |
$ cd salt-code/vagrant | |
$ vagrant init hashicorp/precise64 | |
A `Vagrantfile` has been placed in this directory. You are now | |
ready to `vagrant up` your first virtual environment! Please read | |
the comments in the Vagrantfile as well as documentation on | |
`vagrantup.com` for more information on using Vagrant. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment