mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-10 05:11:09 +01:00
* UI: General settings Integration and Acceptance Tests. (#9363) * General settings integration tests * Add page header integration tests * Add page header test for plugin settings as a tab too * More tests! * Acceptance tests! * Add more acceptnace tests * Add copywrite headers * Fix linting error * Fix accessibility errors * Remove unused vars * Put mock secret engine back into beforeHook * Add enterprise to key management test (#9392) --------- Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
31 lines
759 B
TypeScript
31 lines
759 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export const keyMgmtMockModel = {
|
|
secretsEngine: {
|
|
accessor: 'keymgmt_accessor',
|
|
config: {
|
|
default_lease_ttl: 2073600,
|
|
force_no_cache: false,
|
|
listing_visibility: 'hidden',
|
|
max_lease_ttl: 4320000,
|
|
},
|
|
description: 'hello',
|
|
external_entropy_access: false,
|
|
local: true,
|
|
options: {},
|
|
path: 'keymgmt/',
|
|
plugin_version: '',
|
|
running_plugin_version: 'v0.17.1+builtin',
|
|
running_sha256: '',
|
|
seal_wrap: false,
|
|
type: 'keymgmt',
|
|
uuid: '4ea92618-5b52-f89a-9cbe-b65dc7e65689',
|
|
id: 'keymgmt',
|
|
backendConfigurationLink: `vault.cluster.secrets.backend.configuration`,
|
|
},
|
|
versions: ['v0.17.1+builtin'],
|
|
};
|