open-vault/website/source/docs/modules/sources.html.markdown

206 lines
5.8 KiB
Markdown
Raw Normal View History

2015-03-13 17:34:29 +00:00
---
layout: "docs"
page_title: "Module Sources"
sidebar_current: "docs-modules-sources"
description: |-
As documented in usage, the only required parameter when using a module is the `source` parameter which tells Vault where the module can be found and what constraints to put on the module if any (such as branches for Git, versions, etc.).
---
# Module Sources
As documented in [usage](/docs/modules/usage.html), the only required
parameter when using a module is the `source` parameter which tells Vault
where the module can be found and what constraints to put on the module
if any (such as branches for Git, versions, etc.).
Vault manages modules for you: it downloads them, organizes them
on disk, checks for updates, etc. Vault uses this source parameter for
the download/update of modules.
Vault supports the following sources:
* Local file paths
* GitHub
* BitBucket
* Generic Git, Mercurial repositories
* HTTP URLs
Each is documented further below.
## Local File Paths
The easiest source is the local file path. For maximum portability, this
should be a relative file path into a subdirectory. This allows you to
organize your Vault configuration into modules within one repository,
for example.
An example is shown below:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "./consul"
2015-03-13 17:34:29 +00:00
}
```
Updates for file paths are automatic: when "downloading" the module
using the [get command](/docs/commands/get.html), Vault will create
a symbolic link to the original directory. Therefore, any changes are
automatically instantly available.
## GitHub
Vault will automatically recognize GitHub URLs and turn them into
the proper Git repository. The syntax is simple:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "github.com/hashicorp/example"
2015-03-13 17:34:29 +00:00
}
```
Subdirectories within the repository can also be referenced:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "github.com/hashicorp/example//subdir"
2015-03-13 17:34:29 +00:00
}
```
**Note:** The double-slash is important. It is what tells Vault that
that is the separator for a subdirectory, and not part of the repository
itself.
GitHub source URLs will require that Git is installed on your system
and that you have the proper access to the repository.
You can use the same parameters to GitHub repositories as you can generic
Git repositories (such as tags or branches). See the documentation for generic
Git repositories for more information.
## BitBucket
Vault will automatically recognize BitBucket URLs and turn them into
the proper Git or Mercurial repository. An example:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "bitbucket.org/hashicorp/example"
2015-03-13 17:34:29 +00:00
}
```
Subdirectories within the repository can also be referenced:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "bitbucket.org/hashicorp/example//subdir"
2015-03-13 17:34:29 +00:00
}
```
**Note:** The double-slash is important. It is what tells Vault that
that is the separator for a subdirectory, and not part of the repository
itself.
BitBucket URLs will require that Git or Mercurial is installed on your
system, depending on the source URL.
## Generic Git Repository
Generic Git repositories are also supported. The value of `source` in this
case should be a complete Git-compatible URL. Using Git requires that
Git is installed on your system. Example:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "git://hashicorp.com/module.git"
2015-03-13 17:34:29 +00:00
}
```
You can also use protocols such as HTTP or SSH, but you'll have to hint
to Vault (using the forced source type syntax documented below) to use
Git:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "git::https://hashicorp.com/module.git"
2015-03-13 17:34:29 +00:00
}
```
URLs for Git repositories (of any protocol) support the following query
parameters:
* `ref` - The ref to checkout. This can be a branch, tag, commit, etc.
An example of using these parameters is shown below:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "git::https://hashicorp.com/module.git?ref=master"
2015-03-13 17:34:29 +00:00
}
```
## Generic Mercurial Repository
Generic Mercurial repositories are supported. The value of `source` in this
case should be a complete Mercurial-compatible URL. Using Mercurial requires that
Mercurial is installed on your system. Example:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "hg::http://hashicorp.com/module.hg"
2015-03-13 17:34:29 +00:00
}
```
In the case of above, we used the forced source type syntax documented below.
Mercurial repositories require this.
URLs for Mercurial repositories (of any protocol) support the following query
parameters:
* `rev` - The rev to checkout. This can be a branch, tag, commit, etc.
## HTTP URLs
Any HTTP endpoint can serve up Vault modules. For HTTP URLs (SSL is
supported, as well), Vault will make a GET request to the given URL.
An additional GET parameter `vault-get=1` will be appended, allowing
you to optionally render the page differently when Vault is requesting it.
Vault then looks for the resulting module URL in the following order.
First, if a header `X-Vault-Get` is present, then it should contain
the source URL of the actual module. This will be used.
If the header isn't present, Vault will look for a `<meta>` tag
with the name of "vault-get". The value will be used as the source
URL.
## Forced Source Type
In a couple places above, we've referenced "forced source type." Forced
source type is a syntax added to URLs that allow you to force a specific
method for download/updating the module. It is used to disambiguate URLs.
For example, the source "http://hashicorp.com/foo.git" could just as
easily be a plain HTTP URL as it might be a Git repository speaking the
HTTP protocol. The forced source type syntax is used to force Vault
one way or the other.
Example:
```javascript
2015-03-13 17:34:29 +00:00
module "consul" {
source = "git::http://hashicorp.com/foo.git"
2015-03-13 17:34:29 +00:00
}
```
The above will force Vault to get the module using Git, despite it
being an HTTP URL.
If a forced source type isn't specified, Vault will match the exact
protocol if it supports it. It will not try multiple methods. In the case
above, it would've used the HTTP method.