vault_transform_role

This resource supports the "/transform/role/{name}" Vault endpoint.

It creates or updates the role with the given name. If a role with the name does not exist, it will be created. If the role exists, it will be updated with the new attributes.

Example Usage

resource "vault_mount" "mount_transform" {
  path = "transform"
  type = "transform"
}
resource "vault_transform_role" "test" {
  path = vault_mount.mount_transform.path
  name = "payments"
  transformations = ["ccn-fpe"]
}

Argument Reference

The following arguments are supported: