vault_identity_entity

Creates an Identity Entity for Vault. The Identity secrets engine is the identity management solution for Vault. It internally maintains the clients who are recognized by Vault.

Example Usage

resource "vault_identity_entity" "test" {
  name      = "tester1"
  policies  = ["test"]
  metadata  = {
    foo = "bar"
  }
}

Argument Reference

The following arguments are supported:

Attributes Reference

Import

Identity entity can be imported using the id, e.g.

$ terraform import vault_identity_entity.test "ae6f8ued-0f1a-9f6b-2915-1a2be20dc053"