vault/ui/app/helpers/supported-secret-backends.js
lane-wetmore 55674ddd1f
UI: Add TOTP secrets engine (#29751)
* TOTP secrets in the web UI
---------

Co-authored-by: Moritz Pflanzer <moritz@pflanzer.eu>
Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
Co-authored-by: Shannon Roberts (Beagin) <beagins@users.noreply.github.com>
2025-04-17 12:59:45 -05:00

32 lines
505 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',
'totp',
];
export function supportedSecretBackends() {
return SUPPORTED_SECRET_BACKENDS;
}
export default buildHelper(supportedSecretBackends);