Add docs for vault_auth_backend

This commit is contained in:
Conor Mongey 2017-05-16 14:09:44 +01:00
parent 4435f4362e
commit 74252b269f
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,32 @@
---
layout: "vault"
page_title: "Vault: vault_auth_backend resource"
sidebar_current: "docs-vault-auth-backend"
description: |-
Writes arbitrary policies for Vault
---
# vault\_auth\_backend
## Example Usage
```hcl
resource "vault_auth_backend" "example" {
type = "github"
}
```
## Argument Reference
The following arguments are supported:
* `type` - (Required) The name of the policy
* `path` - (Optional) The path to mount the auth backend. This defaults to the name.
* `description` - (Optional) A description of the auth backend
## Attributes Reference
No additional attributes are exported by this resource.

View File

@ -24,6 +24,9 @@
<li<%= sidebar_current("docs-vault-resource") %>>
<a href="#">Resources</a>
<ul class="nav nav-visible">
<li<%= sidebar_current("docs-vault-resource-auth-backend") %>>
<a href="/docs/providers/vault/r/auth_backend.html">vault_auth_backend</a>
</li>
<li<%= sidebar_current("docs-vault-resource-generic-secret") %>>
<a href="/docs/providers/vault/r/generic_secret.html">vault_generic_secret</a>