mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
* add kmip engine * adjust where kmip engine is mounted and sketch out routes * add secret mount path service to share params to engines * move list-controller and list-route mixins to core addon and adjust imports * properly link kmip secrets from the secrets list page * tweak routes and add list controllers * stub out some models and adapters * fix mixin exports * move a bunch of components into the core addon * use new empty yield in list-view in the namespace template * scopes list using list-view and list-item components * simplify and flatten routes, templates for all of the list pages * role show route and template and scope create template * add ember-router-helpers * add more packages to the dependencies of the core addon * add field-group-show component for listing fields from a model * move more components to the shared addon * make configure and configuration routes work and save a generated model * save and list scopes * role create, list, read * list credentials properly * move allowed attributes to field group * show allowed operations on role details page * add kmip logo to mount secrets engine list page * add role edit page * show all model attributes on role show page * enable role edit * fix newFields error by creating open api role model on the role list route * only show selected fields on role edit page * do not send scope and backend attrs to api * move path-or-array to core addon * move string-list component to core addon * remove extra top border when there is only one field group * add icons for all of the list pages * update kmip config model so defaultValue doesn't error * generate credentials * credential create and show * only show kmip when feature is enabled * fix saving of TTL fields generated from Open API * move masked-input and list-pagination components to core addon * add param on edit form to allow for calling onSave after render happens * polish credential show page and redirect there after generating credentials * add externalLink for kmip engine * add kmip-breadcrumb component * use kmip-breadcrumb component * add linkPrefix param to linked-block component to allow for routing programmatically inside an engine * redirect to the right place when enabling kmip * fix linting * review feedback * update signature for path-help usage * fix ttl field expansion test * remove role filed from role form, fix generate redirect * remove field-group-show because it's in the core addon * remove bottom rule from show pages * fix Max TTL displayAttrs for ssh role * update edit-form to take fields or attrs * fix linting * remove listenAddrs and set default val on ttl if a val is passed in
72 lines
2.3 KiB
Handlebars
72 lines
2.3 KiB
Handlebars
<HeaderScope />
|
|
<Toolbar>
|
|
{{#if model.meta.total}}
|
|
<ToolbarFilters>
|
|
<NavigateInput
|
|
@filterFocusDidChange={{action "setFilterFocus" }}
|
|
@filterDidChange={{action "setFilter"}}
|
|
@filter={{this.filter}}
|
|
@filterMatchesKey={{filterMatchesKey}}
|
|
@firstPartialMatch={{firstPartialMatch}}
|
|
@placeholder="Filter scopes by name"
|
|
@urls={{hash
|
|
create="vault.cluster.secrets.backend.kmip.scopes.create"
|
|
list="vault.cluster.secrets.backend.kmip.scopes.index"
|
|
show="vault.cluster.secrets.backend.kmip.scope.roles"
|
|
}}
|
|
/>
|
|
{{#if filterFocused}}
|
|
{{#if filterMatchesKey}}
|
|
<p class="input-hint">
|
|
<kbd>ENTER</kbd> to go to <code>{{this.filter}}</code>
|
|
</p>
|
|
{{/if}}
|
|
{{#if firstPartialMatch}}
|
|
<p class="input-hint">
|
|
<kbd>TAB</kbd> to complete <code>{{firstPartialMatch.id}}</code>
|
|
</p>
|
|
{{/if}}
|
|
{{/if}}
|
|
</ToolbarFilters>
|
|
{{/if}}
|
|
<ToolbarActions>
|
|
<ToolbarLink
|
|
@type="add"
|
|
@params={{array "scopes.create"}}
|
|
>
|
|
Create scope
|
|
</ToolbarLink>
|
|
</ToolbarActions>
|
|
</Toolbar>
|
|
<ListView @items={{model}} @itemNoun="scope" @paginationRouteName="scopes.index" as |list|>
|
|
{{#if list.empty}}
|
|
<list.empty
|
|
@title="KMIP Secrets Engine"
|
|
@message="First, let's create a scope that our roles and credentials will belong to. A client can only access objects within their role's scope."
|
|
>
|
|
{{#link-to "scopes.create"}}
|
|
Create a scope
|
|
{{/link-to}}
|
|
</list.empty>
|
|
{{else if list.item}}
|
|
<ListItem @linkPrefix={{this.mountPoint}} @linkParams={{array "scope.roles" list.item.id}} as |Item|>
|
|
<Item.content>
|
|
<Icon @glyph="folder-outline" class="has-text-grey-light" @size="l" />{{list.item.id}}
|
|
</Item.content>
|
|
<Item.menu>
|
|
<li class="action">
|
|
{{#link-to "scope" list.item.id class="is-block"}}
|
|
View scope
|
|
{{/link-to}}
|
|
</li>
|
|
</Item.menu>
|
|
</ListItem>
|
|
{{else}}
|
|
<ListItem as |Item|>
|
|
<Item.content>
|
|
There are no scopes that match {{this.filter}}, press <kbd>ENTER</kbd> to add one.
|
|
</Item.content>
|
|
</ListItem>
|
|
{{/if}}
|
|
</ListView>
|