2018-04-03 09:16:57 -05:00

34 lines
839 B
JavaScript

import Ember from 'ember';
import DS from 'ember-data';
import AuthConfig from '../../auth-config';
import fieldToAttrs from 'vault/utils/field-to-attrs';
const { attr } = DS;
const { computed } = Ember;
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);
}),
});