d509588cd2
Ember update - update ember-cli, ember-data, and ember to 3.4 series
33 lines
826 B
JavaScript
33 lines
826 B
JavaScript
import { computed } from '@ember/object';
|
|
import DS from 'ember-data';
|
|
import AuthConfig from '../../auth-config';
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
|
|
|
const { attr } = DS;
|
|
|
|
export default AuthConfig.extend({
|
|
secretKey: attr('string'),
|
|
accessKey: attr('string'),
|
|
endpoint: attr('string', {
|
|
label: 'EC2 Endpoint',
|
|
}),
|
|
iamEndpoint: attr('string', {
|
|
label: 'IAM Endpoint',
|
|
}),
|
|
stsEndpoint: attr('string', {
|
|
label: 'STS Endpoint',
|
|
}),
|
|
iamServerIdHeaderValue: attr('string', {
|
|
label: 'IAM Server ID Header Value',
|
|
}),
|
|
|
|
fieldGroups: computed(function() {
|
|
const groups = [
|
|
{ default: ['accessKey', 'secretKey'] },
|
|
{ 'AWS Options': ['endpoint', 'iamEndpoint', 'stsEndpoint', 'iamServerIdHeaderValue'] },
|
|
];
|
|
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
});
|