mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 08:31:09 +02:00
* configuration details only changes * azure configuration acceptance test * clean up * change attrs to display attrs and reuse formFields * missed some * clean up * Update ui/app/helpers/mountable-secret-engines.js Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com> * remove extra conditional * fix test for oss runs * clean up the logic for checking if the model has been configured * remove formatTtl * fix broken conditional * address pr comments * clean up clean up everybody lets clean up --------- Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
24 lines
689 B
JavaScript
24 lines
689 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
export default class IdentityOidcConfig extends Model {
|
|
@attr('string', {
|
|
label: 'Issuer',
|
|
subText:
|
|
"The Issuer URL to be used in configuring Vault as an identity provider. If not set, Vault's default issuer will be used.",
|
|
docLink: '/vault/api-docs/secret/identity/tokens#configure-the-identity-tokens-backend',
|
|
placeholder: 'https://vault-test.com',
|
|
})
|
|
issuer;
|
|
|
|
get displayAttrs() {
|
|
const keys = ['issuer'];
|
|
return expandAttributeMeta(this, keys);
|
|
}
|
|
}
|