github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/vault/r/mount.html.md (about) 1 --- 2 layout: "vault" 3 page_title: "Vault: vault_mount resource" 4 sidebar_current: "docs-vault-resource-mount" 5 description: |- 6 Managing the mounting of secret backends in Vault 7 --- 8 9 # vault\_mount 10 11 12 ## Example Usage 13 14 ```hcl 15 resource "vault_mount" "example" { 16 path = "dummy" 17 type = "generic" 18 description = "This is an example mount" 19 } 20 ``` 21 22 ## Argument Reference 23 24 The following arguments are supported: 25 26 * `path` - (Required) Where the secret backend will be mounted 27 28 * `type` - (Required) Type of the backend, such as "aws" 29 30 * `description` - (Optional) Human-friendly description of the mount 31 32 * `default_lease_ttl_seconds` - (Optional) Default lease duration for tokens and secrets in seconds 33 34 * `max_lease_ttl_seconds` - (Optional) Maximum possible lease duration for tokens and secrets in seconds 35 36 ## Attributes Reference 37 38 No additional attributes are exported by this resource.