886 B
886 B
layout | page_title | sidebar_current | description |
---|---|---|---|
vault | Vault: vault_mount resource | docs-vault-resource-mount | Managing the mounting of secret backends in Vault |
vault_mount
Example Usage
resource "vault_mount" "example" {
path = "dummy"
type = "generic"
description = "This is an example mount"
}
Argument Reference
The following arguments are supported:
-
path
- (Required) Where the secret backend will be mounted -
type
- (Required) Type of the backend, such as "aws" -
description
- (Optional) Human-friendly description of the mount -
default_lease_ttl_seconds
- (Optional) Default lease duration for tokens and secrets in seconds -
max_lease_ttl_seconds
- (Optional) Maximum possible lease duration for tokens and secrets in seconds
Attributes Reference
No additional attributes are exported by this resource.