github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/vault/r/auth_backend.md (about) 1 --- 2 layout: "vault" 3 page_title: "Vault: vault_auth_backend resource" 4 sidebar_current: "docs-vault-auth-backend" 5 description: |- 6 Writes arbitrary policies for Vault 7 --- 8 9 # vault\_auth\_backend 10 11 12 ## Example Usage 13 14 ```hcl 15 resource "vault_auth_backend" "example" { 16 type = "github" 17 } 18 ``` 19 20 ## Argument Reference 21 22 The following arguments are supported: 23 24 * `type` - (Required) The name of the policy 25 26 * `path` - (Optional) The path to mount the auth backend. This defaults to the name. 27 28 * `description` - (Optional) A description of the auth backend 29 30 ## Attributes Reference 31 32 No additional attributes are exported by this resource.