mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
* UI: HDS adoption replace AlertBanner part 1 (#21163) * rename test selector * replace db banner * add class * replace db role edit * db creds * generate creds * simpler class * license banner component * oidc callback plash * raft * aws * secret create or update * change to compact alert for form field * change back to inline * combine alert banners * wrap in conditional * remove references to message class * UI: HDS adoption replace AlertBanner part 2 (#21243) * token expire warning * delete css * edit form * item details distribute mfa step 2 transit verify * back to secondary * distribute * oidc lease error * sign * kv obj and repl dash * more repl * update test selector * show, creds * shamir * pki csr * pki banners * add hds library to ember engines * woops comma * fix k8 test * update message error component for last! * hold off MessageError changes until next pr * revert test selectors * update pki tests * UI: part 3 remove alert banner (#21334) * final component swap * and actual final of MessageError * update MessageError selectors * delete alert-banner and remove references * update next step alerts to highlight color * finishing touches, auth form test and client dashboard inline link * fix more selectors * fix shamir flow test * ui: part 4 final cleanup (#21365) * replace AlertPopup * add test tag * move tag * one more message error tag * delete alert popup * final css cleanup * move preformatted flash into <p> tag * ui: address comments for sidebranch (#21388) * add periods, move link to trailing * more periods and typo fix
167 lines
5.4 KiB
Handlebars
167 lines
5.4 KiB
Handlebars
<PageHeader as |p|>
|
|
<p.top>
|
|
<nav class="breadcrumb">
|
|
<ul>
|
|
<li>
|
|
<span class="sep">/</span>
|
|
<LinkTo @route="vault.cluster.secrets.backend" @model={{this.backendPath}} data-test-link="role-list">
|
|
{{this.backendPath}}
|
|
</LinkTo>
|
|
</li>
|
|
<li class="is-active">
|
|
<span class="sep">/</span>
|
|
<LinkTo @route="vault.cluster.secrets.backend" @model={{this.backendPath}}>
|
|
creds
|
|
</LinkTo>
|
|
</li>
|
|
<li>
|
|
<span class="sep">/</span>
|
|
<LinkTo @route="vault.cluster.secrets.backend.show" @model={{this.roleName}}>
|
|
{{this.roleName}}
|
|
</LinkTo>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 data-test-title class="title is-3">
|
|
{{this.options.title}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
|
|
{{#if this.model.hasGenerated}}
|
|
<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
|
|
<MessageError @model={{this.model}} />
|
|
{{#unless this.model.isError}}
|
|
<Hds::Alert @type="inline" @color="warning" class="has-top-bottom-margin" data-test-warning as |A|>
|
|
<A.Title>Warning</A.Title>
|
|
<A.Description>
|
|
You will not be able to access this information later, so please copy the information below.
|
|
</A.Description>
|
|
</Hds::Alert>
|
|
{{/unless}}
|
|
{{#each this.model.attrs as |attr|}}
|
|
{{#if (eq attr.type "object")}}
|
|
<InfoTableRow
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{stringify (get this.model attr.name)}}
|
|
/>
|
|
{{else}}
|
|
{{#if
|
|
(or
|
|
(eq attr.name "key")
|
|
(eq attr.name "secretKey")
|
|
(eq attr.name "securityToken")
|
|
(eq attr.name "privateKey")
|
|
attr.options.masked
|
|
)
|
|
}}
|
|
{{#if (get this.model attr.name)}}
|
|
<InfoTableRow
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{get this.model attr.name}}
|
|
>
|
|
<MaskedInput
|
|
@value={{get this.model attr.name}}
|
|
@name={{attr.name}}
|
|
@displayOnly={{true}}
|
|
@allowCopy={{true}}
|
|
/>
|
|
</InfoTableRow>
|
|
{{/if}}
|
|
{{else if (and (get this.model attr.name) (or (eq attr.name "issueDate") (eq attr.name "expiryDate")))}}
|
|
<InfoTableRow
|
|
data-test-table-row
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{date-format (get this.model attr.name) "MMM dd, yyyy hh:mm:ss a" isFormatted=true}}
|
|
/>
|
|
{{else}}
|
|
<InfoTableRow
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{get this.model attr.name}}
|
|
/>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
<div class="field is-grouped box is-fullwidth is-bottomless">
|
|
<div class="control">
|
|
<CopyButton
|
|
@clipboardText={{this.model.toCreds}}
|
|
@class="button is-primary"
|
|
@buttonType="button"
|
|
@success={{action (set-flash-message "Credentials copied!")}}
|
|
>
|
|
Copy credentials
|
|
</CopyButton>
|
|
</div>
|
|
{{#if this.model.leaseId}}
|
|
<div class="control">
|
|
<CopyButton
|
|
@clipboardText={{this.model.leaseId}}
|
|
@class="button"
|
|
@buttonType="button"
|
|
@success={{action (set-flash-message "Lease ID copied!")}}
|
|
>
|
|
Copy Lease ID
|
|
</CopyButton>
|
|
</div>
|
|
{{/if}}
|
|
<div class="control">
|
|
{{#if this.options.backIsListLink}}
|
|
<LinkTo
|
|
@route="vault.cluster.secrets.backend.list-root"
|
|
@model={{this.backendPath}}
|
|
data-test-secret-generate-back={{true}}
|
|
class="button"
|
|
>
|
|
Back
|
|
</LinkTo>
|
|
{{else}}
|
|
<button type="button" {{action "newModel"}} class="button" data-test-secret-generate-back="true">
|
|
Back
|
|
</button>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<form {{action "create" on="submit"}} data-test-secret-generate-form="true">
|
|
<div class="box is-sideless no-padding-top is-fullwidth is-marginless">
|
|
<NamespaceReminder @mode="generate" @noun="credential" />
|
|
<MessageError @model={{this.model}} />
|
|
{{#if this.model.helpText}}
|
|
<p class="is-hint">{{this.model.helpText}}</p>
|
|
{{/if}}
|
|
{{#if this.model.fieldGroups}}
|
|
<FormFieldGroupsLoop @model={{this.model}} @mode={{this.mode}} />
|
|
{{else}}
|
|
{{#each this.model.attrs as |attr|}}
|
|
<FormField data-test-field={{true}} @attr={{attr}} @model={{this.model}} />
|
|
{{/each}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="field is-grouped box is-fullwidth is-bottomless">
|
|
<div class="control">
|
|
<button
|
|
type="submit"
|
|
disabled={{this.loading}}
|
|
class="button is-primary {{if this.loading 'is-loading'}}"
|
|
data-test-secret-generate={{true}}
|
|
>
|
|
Generate
|
|
</button>
|
|
</div>
|
|
<div class="control">
|
|
<LinkTo
|
|
@route="vault.cluster.secrets.backend.list-root"
|
|
@model={{this.backendPath}}
|
|
class="button"
|
|
data-test-secret-generate-cancel={{true}}
|
|
>
|
|
Cancel
|
|
</LinkTo>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{/if}} |