open-vault/ui/app/models/auth-config/aws/client.js
Matthew Irish d509588cd2
Ember update (#5386)
Ember update - update ember-cli, ember-data, and ember to 3.4 series
2018-09-25 11:28:26 -05:00

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);
}),
});