mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
UI: Allow creation of AWS session_token type role (#27424)
* Add fields for session_token type role * add changelog
This commit is contained in:
parent
eb8496e874
commit
b0864e3f54
2 changed files with 4 additions and 1 deletions
3
changelog/27424.txt
Normal file
3
changelog/27424.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Allow creation of session_token type roles for AWS secret backend
|
||||
```
|
||||
|
|
@ -66,7 +66,7 @@ export default Model.extend({
|
|||
iam_user: ['name', 'credentialType', 'policyArns', 'policyDocument'],
|
||||
assumed_role: ['name', 'credentialType', 'roleArns', 'policyDocument'],
|
||||
federation_token: ['name', 'credentialType', 'policyDocument'],
|
||||
session_token: [],
|
||||
session_token: ['name', 'credentialType'],
|
||||
};
|
||||
|
||||
return expandAttributeMeta(this, keysForType[credentialType]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue