mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
* update auth-list-test and refactor any selectors it touches * fix section test selector
17 lines
533 B
JavaScript
17 lines
533 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
// The UI supports management of these auth methods (i.e. configuring roles or users)
|
|
// otherwise only configuration of the method is supported.
|
|
export const MANAGED_AUTH_BACKENDS = ['cert', 'kubernetes', 'ldap', 'okta', 'radius', 'userpass'];
|
|
|
|
export function supportedManagedAuthBackends() {
|
|
return MANAGED_AUTH_BACKENDS;
|
|
}
|
|
|
|
export default buildHelper(supportedManagedAuthBackends);
|