mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* add granularity form field to sync destinations * update mirage, shim in subkey response * fix comment * add granular updates to list view * update mirage; * update test * comment for updating test * use hds::dropdown in destinations for consistency * move banner to popup menu * add changelog * remove spans from test
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import SyncDestinationModel from '../destination';
|
|
import { attr } from '@ember-data/model';
|
|
import { withFormFields } from 'vault/decorators/model-form-fields';
|
|
|
|
const displayFields = [
|
|
// connection details
|
|
'name',
|
|
'repositoryOwner',
|
|
'repositoryName',
|
|
'accessToken',
|
|
// vault sync config options
|
|
'granularity',
|
|
'secretNameTemplate',
|
|
];
|
|
const formFieldGroups = [
|
|
{ default: ['name', 'repositoryOwner', 'repositoryName', 'granularity', 'secretNameTemplate'] },
|
|
{ Credentials: ['accessToken'] },
|
|
];
|
|
|
|
@withFormFields(displayFields, formFieldGroups)
|
|
export default class SyncDestinationsGithubModel extends SyncDestinationModel {
|
|
@attr('string', {
|
|
subText:
|
|
'Personal access token to authenticate to the GitHub repository. If empty, Vault will use the GITHUB_ACCESS_TOKEN environment variable if configured.',
|
|
})
|
|
accessToken; // obfuscated, never returned by API
|
|
|
|
@attr('string', {
|
|
subText:
|
|
'Github organization or username that owns the repository. If empty, Vault will use the GITHUB_REPOSITORY_OWNER environment variable if configured.',
|
|
editDisabled: true,
|
|
})
|
|
repositoryOwner;
|
|
|
|
@attr('string', {
|
|
subText:
|
|
'The name of the Github repository to connect to. If empty, Vault will use the GITHUB_REPOSITORY_NAME environment variable if configured.',
|
|
editDisabled: true,
|
|
})
|
|
repositoryName;
|
|
}
|