103 lines
3.1 KiB
Handlebars
103 lines
3.1 KiB
Handlebars
<PageHeader as |p|>
|
|
<p.top>
|
|
<nav class="breadcrumb">
|
|
<ul>
|
|
<li>
|
|
<span class="sep">/</span>
|
|
<LinkTo @route="vault.cluster.secrets.backend.overview" @model={{@backendPath}}>
|
|
{{@backendPath}}
|
|
</LinkTo>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 data-test-title class="title is-3">
|
|
{{@roleName}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
|
|
<div class={{if @roleType "box is-fullwidth is-sideless is-marginless"}}>
|
|
{{!-- If no role type, that means both static and dynamic requests returned an error --}}
|
|
{{#unless @roleType }}
|
|
<EmptyState
|
|
@title={{errorTitle}}
|
|
@subTitle="Error {{@model.errorHttpStatus}}"
|
|
@icon="alert-circle-outline"
|
|
@bottomBorder={{true}}
|
|
@message={{@model.errorMessage}}
|
|
>
|
|
<nav class="breadcrumb">
|
|
<ul class="is-grouped-split">
|
|
<li>
|
|
{{!-- Empty because they can't go "back" anywhere --}}
|
|
</li>
|
|
<li>
|
|
<LearnLink @path="/vault/database-secrets" @class="has-text-grey">
|
|
Need help?
|
|
</LearnLink>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</EmptyState>
|
|
{{/unless}}
|
|
{{#unless (or @model.errorMessage (not @roleType))}}
|
|
<AlertBanner
|
|
@type="warning"
|
|
@message="You will not be able to access these credentials later, so please copy them now."
|
|
data-test-warning
|
|
/>
|
|
{{/unless}}
|
|
{{!-- DYNAMIC ROLE --}}
|
|
{{#if (and (eq @roleType 'dynamic') @model.username)}}
|
|
<InfoTableRow @label="Username" @value={{@model.username}}>
|
|
<MaskedInput
|
|
@value={{@model.username}}
|
|
@name="Username"
|
|
@displayOnly={{true}}
|
|
@allowCopy={{true}}
|
|
/>
|
|
</InfoTableRow>
|
|
<InfoTableRow @label="Password" @value={{@model.password}}>
|
|
<MaskedInput
|
|
@value={{@model.password}}
|
|
@name="Password"
|
|
@displayOnly={{true}}
|
|
@allowCopy={{true}}
|
|
/>
|
|
</InfoTableRow>
|
|
<InfoTableRow @label="Lease ID" @value={{@model.leaseId}} />
|
|
<InfoTableRow @label="Lease Duration" @value={{format-duration @model.leaseDuration }} />
|
|
{{/if}}
|
|
{{!-- STATIC ROLE --}}
|
|
{{#if (and (eq @roleType 'static') @model.username)}}
|
|
<InfoTableRow
|
|
@label="Last Vault rotation"
|
|
@value={{date-format @model.lastVaultRotation 'MMMM d yyyy, h:mm:ss a'}}
|
|
@tooltipText={{@model.lastVaultRotation}}
|
|
/>
|
|
<InfoTableRow @label="Password" @value={{@model.password}}>
|
|
<MaskedInput
|
|
@value={{@model.password}}
|
|
@name="Password"
|
|
@displayOnly={{true}}
|
|
@allowCopy={{true}}
|
|
/>
|
|
</InfoTableRow>
|
|
<InfoTableRow @label="Username" @value={{@model.username}} />
|
|
<InfoTableRow @label="Rotation Period" @value={{format-duration @model.rotationPeriod}} />
|
|
<InfoTableRow @label="Time Remaining" @value={{format-duration @model.ttl}} />
|
|
{{/if}}
|
|
</div>
|
|
<div class="has-top-bottom-margin">
|
|
<button
|
|
type="button"
|
|
onclick={{action "redirectPreviousPage"}}
|
|
class="button is-primary"
|
|
data-test-secret-generate-back="true"
|
|
>
|
|
Back
|
|
</button>
|
|
</div>
|