» 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.
Important All data provided in the resource configuration will be written in cleartext to state and plan files generated by Terraform, and will appear in the console output when Terraform runs. Protect these artifacts accordingly. See the main provider documentation for more details.
» Example Usage
resource "vault_identity_entity" "test" {
name = "tester1"
policies = ["test"]
metadata = {
foo = "bar"
}
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) Name of the identity entity to create. -
policies
- (Optional) A list of policies to apply to the entity. -
metadata
- (Optional) A Map of additional metadata to associate with the user. -
disabled
- (Optional) True/false Is this entity currently disabled. Defaults tofalse
» Attributes Reference
-
id
- Theid
of the created entity.