46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { attr } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import AuthConfig from '../auth-config';
|
|
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
|
|
|
export default AuthConfig.extend({
|
|
useOpenAPI: true,
|
|
tenantId: attr('string', {
|
|
label: 'Tenant ID',
|
|
helpText: 'The tenant ID for the Azure Active Directory organization',
|
|
}),
|
|
resource: attr('string', {
|
|
helpText: 'The configured URL for the application registered in Azure Active Directory',
|
|
}),
|
|
clientId: attr('string', {
|
|
label: 'Client ID',
|
|
helpText:
|
|
'The client ID for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.',
|
|
}),
|
|
clientSecret: attr('string', {
|
|
helpText: 'The client secret for credentials to query the Azure APIs',
|
|
}),
|
|
|
|
googleCertsEndpoint: attr('string'),
|
|
|
|
fieldGroups: computed('newFields', function () {
|
|
let groups = [
|
|
{ default: ['tenantId', 'resource'] },
|
|
{
|
|
'Azure Options': ['clientId', 'clientSecret'],
|
|
},
|
|
];
|
|
if (this.newFields) {
|
|
groups = combineFieldGroups(groups, this.newFields, []);
|
|
}
|
|
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
});
|