mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* 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>
32 lines
505 B
JavaScript
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);
|