UI - new backends (#4302)
* allow mounting of gcp secrets engine * add models for azure auth method * add azure as a mountable auth method * make dev CSP more like built-in CSP * id -> ID
This commit is contained in:
parent
5b0885ae49
commit
067495ccce
|
@ -0,0 +1,2 @@
|
|||
import AuthConfig from './_base';
|
||||
export default AuthConfig.extend();
|
|
@ -11,6 +11,7 @@ export default Ember.Controller.extend({
|
|||
{ label: 'Cassandra', value: 'cassandra' },
|
||||
{ label: 'Consul', value: 'consul' },
|
||||
{ label: 'Databases', value: 'database' },
|
||||
{ label: 'Google Cloud', value: 'gcp' },
|
||||
{ label: 'KV', value: 'kv' },
|
||||
{ label: 'MongoDB', value: 'mongodb' },
|
||||
{ label: 'MS SQL', value: 'mssql', deprecated: true },
|
||||
|
|
|
@ -11,6 +11,11 @@ const MOUNTABLE_AUTH_METHODS = [
|
|||
value: 'aws',
|
||||
type: 'aws',
|
||||
},
|
||||
{
|
||||
displayName: 'Azure',
|
||||
value: 'azure',
|
||||
type: 'azure',
|
||||
},
|
||||
{
|
||||
displayName: 'Google Cloud',
|
||||
value: 'gcp',
|
||||
|
|
|
@ -15,6 +15,12 @@ const TABS_FOR_SETTINGS = {
|
|||
routeParams: ['vault.cluster.settings.auth.configure.section', 'roletag-blacklist'],
|
||||
},
|
||||
],
|
||||
azure: [
|
||||
{
|
||||
label: 'Configuration',
|
||||
routeParams: ['vault.cluster.settings.auth.configure.section', 'configuration'],
|
||||
},
|
||||
],
|
||||
github: [
|
||||
{
|
||||
label: 'Configuration',
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
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({
|
||||
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(function() {
|
||||
const groups = [
|
||||
{ default: ['tenantId', 'resource'] },
|
||||
{
|
||||
'Azure Options': ['clientId', 'clientSecret'],
|
||||
},
|
||||
];
|
||||
return fieldToAttrs(this, groups);
|
||||
}),
|
||||
});
|
|
@ -10,6 +10,7 @@ export default Ember.Route.extend(UnloadModelRoute, {
|
|||
'aws-client': 'auth-config/aws/client',
|
||||
'aws-identity-whitelist': 'auth-config/aws/identity-whitelist',
|
||||
'aws-roletag-blacklist': 'auth-config/aws/roletag-blacklist',
|
||||
'azure-configuration': 'auth-config/azure',
|
||||
'github-configuration': 'auth-config/github',
|
||||
'gcp-configuration': 'auth-config/gcp',
|
||||
'kubernetes-configuration': 'auth-config/kubernetes',
|
||||
|
|
|
@ -55,6 +55,10 @@ module.exports = function(environment) {
|
|||
if (environment !== 'production') {
|
||||
ENV.contentSecurityPolicyHeader = 'Content-Security-Policy';
|
||||
ENV.contentSecurityPolicyMeta = true;
|
||||
ENV.contentSecurityPolicy = {
|
||||
'connect-src': ["'self'"],
|
||||
'style-src': ["'unsafe-inline'", "'self'"],
|
||||
};
|
||||
}
|
||||
|
||||
if (environment === 'production') {
|
||||
|
|
Loading…
Reference in New Issue