This resource supports the "/transform/alphabet/{name}" Vault endpoint.
It queries an existing alphabet by the given name.
resource "vault_mount" "mount_transform" {
path = "transform"
type = "transform"
}
resource "vault_transform_alphabet" "test" {
path = vault_mount.mount_transform.path
name = "numerics"
alphabet = "0123456789"
}
The following arguments are supported:
namespace
- (Optional) The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespace
is always relative to the provider's configured namespace.
Available only for Vault Enterprise.
path
- (Required) Path to where the back-end is mounted within Vault.
alphabet
- (Optional) A string of characters that contains the alphabet set.name
- (Required) The name of the alphabet.