mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 07:01:09 +02:00
75 lines
2.5 KiB
Handlebars
75 lines
2.5 KiB
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
|
|
{{#each this.model.transformFieldAttrs 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 (eq attr.type "array")}}
|
|
<InfoTableRow
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{get this.model attr.name}}
|
|
@type={{attr.type}}
|
|
@isLink={{eq attr.name "allowed_roles"}}
|
|
@queryParam="role"
|
|
@modelType="transform/role"
|
|
@wildcardLabel={{attr.options.wildcardLabel}}
|
|
@backend={{this.model.backend}}
|
|
/>
|
|
{{else}}
|
|
<InfoTableRow
|
|
@label={{capitalize (or attr.options.label (humanize (dasherize attr.name)))}}
|
|
@value={{get this.model attr.name}}
|
|
@type={{attr.type}}
|
|
/>
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
|
|
<div class="has-top-margin-xl has-bottom-margin-s">
|
|
<label class="title has-border-bottom-light page-header">CLI Commands</label>
|
|
<div class="has-bottom-margin-s">
|
|
<h2 class="title is-6">Encode</h2>
|
|
<div class="has-bottom-margin-s">
|
|
<span class="helper-text has-text-grey">
|
|
To test the encoding capability of your transformation, use the following command. It will output an encoded_value.
|
|
</span>
|
|
</div>
|
|
<div class="copy-text level">
|
|
{{#let (concat "vault write " this.model.backend "/encode/" this.cliCommand) as |copyEncodeCommand|}}
|
|
<Hds::CodeBlock
|
|
@language="bash"
|
|
@hasLineNumbers={{false}}
|
|
@hasLineWrapping={{true}}
|
|
@hasCopyButton={{true}}
|
|
@value={{copyEncodeCommand}}
|
|
/>
|
|
{{/let}}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<h2 class="title is-6">Decode</h2>
|
|
<div class="has-bottom-margin-s">
|
|
<span class="helper-text has-text-grey">
|
|
To test decoding capability of your transformation, use the encoded_value in the following command. It should return
|
|
your original input.
|
|
</span>
|
|
</div>
|
|
<div class="copy-text level">
|
|
{{#let (concat "vault write " this.model.backend "/decode/" this.cliCommand) as |copyDecodeCommand|}}
|
|
<Hds::CodeBlock
|
|
@language="bash"
|
|
@hasLineNumbers={{false}}
|
|
@hasLineWrapping={{true}}
|
|
@hasCopyButton={{true}}
|
|
@value={{copyDecodeCommand}}
|
|
/>
|
|
{{/let}}
|
|
</div>
|
|
</div>
|
|
</div> |