Vagrant Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 22: Line 22:
=Plugin=
=Plugin=


A plugin extends Vagrant by adding new functionality such as new [[#Provider|providers]].
{{External|https://www.vagrantup.com/docs/plugins/}}
 
A plugin extends Vagrant by adding new functionality such as new [[#Provider|providers]]. Plugins extend Vagrant using a stable API. Most of the core Vagrant functionality is implemented using [https://github.com/hashicorp/vagrant/tree/master/plugins core plugins].


=Provider=
=Provider=

Revision as of 18:01, 17 November 2019

Internal

Vagrantfile

Vagrantfile

Box

https://www.vagrantup.com/docs/cli/box.html

Vagrant boxes are prepackaged development environments that are the foundation of Vagrant. In most cases, this is usually just a stripped and naked operating system such as Ubuntu, Debian, or CentOS. Boxes exist with the intention to be provisioned with additional features like Apache and PHP using tools like Chef or Puppet. There are publicly available Vagrant boxes: https://www.vagrantup.com/docs/cli/box.html

Dummy Box

Box Operations

Box Operations


Plugin

https://www.vagrantup.com/docs/plugins/

A plugin extends Vagrant by adding new functionality such as new providers. Plugins extend Vagrant using a stable API. Most of the core Vagrant functionality is implemented using core plugins.

Provider

AWS Provider

State