mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
UI: Add missing allowed_user_ids to role form in PKI (#22191)
This commit is contained in:
parent
a1a5be97e2
commit
bfef207711
3 changed files with 6 additions and 1 deletions
3
changelog/22191.txt
Normal file
3
changelog/22191.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
ui: adds allowed_user_ids field to create role form and user_ids to generate certificates form in pki
|
||||
```
|
||||
|
|
@ -9,7 +9,7 @@ import PkiCertificateBaseModel from './base';
|
|||
|
||||
const generateFromRole = [
|
||||
{
|
||||
default: ['commonName', 'customTtl', 'format', 'privateKeyFormat'],
|
||||
default: ['commonName', 'userIds', 'customTtl', 'format', 'privateKeyFormat'],
|
||||
},
|
||||
{
|
||||
'Subject Alternative Name (SAN) Options': [
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ const fieldGroups = [
|
|||
},
|
||||
{
|
||||
'Additional subject fields': [
|
||||
'allowedUserIds',
|
||||
'allowedSerialNumbers',
|
||||
'requireCn',
|
||||
'useCsrCommonName',
|
||||
|
|
@ -293,6 +294,7 @@ export default class PkiRoleModel extends Model {
|
|||
})
|
||||
extKeyUsageOids;
|
||||
|
||||
@attr({ editType: 'stringArray' }) allowedUserIds;
|
||||
@attr({ editType: 'stringArray' }) organization;
|
||||
@attr({ editType: 'stringArray' }) country;
|
||||
@attr({ editType: 'stringArray' }) locality;
|
||||
|
|
|
|||
Loading…
Reference in a new issue