Skip to content

Commit

Permalink
Merge branch 'main' into update/vault-plugin-secrets-openldap/v0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raymonstah authored Feb 20, 2024
2 parents 605bc89 + e5c6e4c commit 4dc9b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ui/app/routes/vault/cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ export default Route.extend(ModelBoundaryRoute, ClusterRoute, {

getClusterId(params) {
const { cluster_name } = params;
const cluster = this.modelFor('vault').findBy('name', cluster_name);
const records = this.store.peekAll('cluster');
const cluster = records.find((record) => record.name === cluster_name);
return cluster ? cluster.get('id') : null;
},

Expand Down
1 change: 0 additions & 1 deletion website/content/docs/enterprise/entropy-augmentation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ and include (but not limited to) the following:
- [SSH](/vault/docs/secrets/ssh) CA key generation, but not for key pair generation
- [KMIP](/vault/docs/secrets/kmip) uses EA for its TLS CA, server, and client
certificates.
- Passwords generated where password policies are supported.
- TOTP two factor keys.


Expand Down

0 comments on commit 4dc9b81

Please sign in to comment.