mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 11:38:02 +00:00
* starting * add the details functionality * test coverage * welp, friday fingers * small small changes * Update ui/app/models/gcp/config.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * Update ui/app/helpers/mountable-secret-engines.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * update small changes on model * reorder loop on configuration details * Update ui/tests/integration/components/secret-engine/configuration-details-test.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * Update ui/app/models/gcp/config.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * Update ui/app/models/gcp/config.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * Update ui/app/routes/vault/cluster/secrets/backend/configuration/index.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * add comment --------- Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
31 lines
495 B
JavaScript
31 lines
495 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
const SUPPORTED_SECRET_BACKENDS = [
|
|
'aws',
|
|
'azure',
|
|
'cubbyhole',
|
|
'database',
|
|
'gcp',
|
|
'generic',
|
|
'keymgmt',
|
|
'kmip',
|
|
'kubernetes',
|
|
'kv',
|
|
'ldap',
|
|
'pki',
|
|
'ssh',
|
|
'transform',
|
|
'transit',
|
|
];
|
|
|
|
export function supportedSecretBackends() {
|
|
return SUPPORTED_SECRET_BACKENDS;
|
|
}
|
|
|
|
export default buildHelper(supportedSecretBackends);
|