From 74252b269f483f8c244db2f5cff30f68b03230d7 Mon Sep 17 00:00:00 2001 From: Conor Mongey Date: Tue, 16 May 2017 14:09:44 +0100 Subject: [PATCH] Add docs for vault_auth_backend --- .../docs/providers/vault/r/auth_backend.md | 32 +++++++++++++++++++ website/source/layouts/vault.erb | 3 ++ 2 files changed, 35 insertions(+) create mode 100644 website/source/docs/providers/vault/r/auth_backend.md diff --git a/website/source/docs/providers/vault/r/auth_backend.md b/website/source/docs/providers/vault/r/auth_backend.md new file mode 100644 index 000000000..8b64ce00c --- /dev/null +++ b/website/source/docs/providers/vault/r/auth_backend.md @@ -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. diff --git a/website/source/layouts/vault.erb b/website/source/layouts/vault.erb index 9071c2565..e00dd71a6 100644 --- a/website/source/layouts/vault.erb +++ b/website/source/layouts/vault.erb @@ -24,6 +24,9 @@ > Resources