open-vault/ui/app/templates/components/wizard/secrets-details.hbs
Jordan Reimer 9eaea7bc14
KMSE Wizard Steps (#15171)
* fixes issues in key-edit component

* adds capabilities checks for keys and providers

* adds distribute component to key and provider edit

* adds wizard steps for kmse
2022-04-26 13:17:42 -06:00

17 lines
729 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<WizardSection @headerText="Your Secrets Engine" @instructions="Click on the link to add a {{@nextStep}} in the page header">
<p>
{{#if (eq @mountSubtype "keymgmt")}}
This secrets engine manages keys and distributes them to external destinations. We recommend that you create a provider
to which you can distribute keys.
{{else}}
{{#if @needsEncryption}}
The Transit Secrets Engine uses encryption keys to provide "encryption as a service". Click on "Create Encryption
Key" at the top to create one.
{{/if}}
{{#if @needsConnection}}
Now that the engine has been mounted, lets connect a
{{@mountSubtype}}.
{{/if}}
{{/if}}
</p>
</WizardSection>