mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 20:36:26 +02:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
19 lines
817 B
JavaScript
19 lines
817 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export const INIT = 'vault.cluster.init';
|
|
export const UNSEAL = 'vault.cluster.unseal';
|
|
export const AUTH = 'vault.cluster.auth';
|
|
export const LOGOUT = 'vault.cluster.logout';
|
|
export const REDIRECT = 'vault.cluster.redirect';
|
|
export const CLUSTER = 'vault.cluster';
|
|
export const CLUSTER_INDEX = 'vault.cluster.index';
|
|
export const OIDC_CALLBACK = 'vault.cluster.oidc-callback';
|
|
export const OIDC_PROVIDER = 'vault.cluster.oidc-provider';
|
|
export const NS_OIDC_PROVIDER = 'vault.cluster.oidc-provider-ns';
|
|
export const DR_REPLICATION_SECONDARY = 'vault.cluster.replication-dr-promote';
|
|
export const DR_REPLICATION_SECONDARY_DETAILS = 'vault.cluster.replication-dr-promote.details';
|
|
export const EXCLUDED_REDIRECT_URLS = ['/vault/logout'];
|