2019-06-21 21:05:45 +00:00
|
|
|
<HeaderScope/>
|
|
|
|
<Toolbar>
|
|
|
|
<ToolbarActions>
|
2019-06-26 16:02:05 +00:00
|
|
|
{{#if model}}
|
|
|
|
<ToolbarDownloadButton
|
|
|
|
@actionText="Download CA cert"
|
|
|
|
@extension="pem"
|
|
|
|
@filename={{concat model.ca.id "-ca"}}
|
|
|
|
@data={{model.ca.caPem}}
|
|
|
|
/>
|
|
|
|
{{/if}}
|
2019-06-21 21:05:45 +00:00
|
|
|
<ToolbarLink
|
|
|
|
@params={{array "configure"}}
|
2019-08-01 21:04:59 +00:00
|
|
|
data-test-kmip-link-configure
|
2019-06-21 21:05:45 +00:00
|
|
|
>
|
|
|
|
Configure
|
|
|
|
</ToolbarLink>
|
|
|
|
</ToolbarActions>
|
|
|
|
</Toolbar>
|
|
|
|
{{#if model}}
|
|
|
|
<FieldGroupShow @model={{model}} />
|
2021-04-22 14:58:37 +00:00
|
|
|
<InfoTableRow @label="CA PEM" @value={{model.ca.caPem}}>
|
|
|
|
<MaskedInput
|
|
|
|
@value={{model.ca.caPem}}
|
|
|
|
@displayOnly={{true}}
|
|
|
|
@allowCopy={{true}}
|
|
|
|
/>
|
|
|
|
</InfoTableRow>
|
2019-06-21 21:05:45 +00:00
|
|
|
{{else}}
|
|
|
|
<EmptyState
|
2021-02-23 15:59:30 +00:00
|
|
|
@title="No configuration for this secrets engine"
|
2019-06-21 21:05:45 +00:00
|
|
|
@message="We'll need to configure a few things before getting started."
|
|
|
|
>
|
|
|
|
{{#link-to "configure"}}
|
|
|
|
Configure
|
|
|
|
{{/link-to}}
|
|
|
|
</EmptyState>
|
|
|
|
{{/if}}
|