9eaea7bc14
* 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
17 lines
729 B
Handlebars
17 lines
729 B
Handlebars
<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, let’s connect a
|
||
{{@mountSubtype}}.
|
||
{{/if}}
|
||
{{/if}}
|
||
</p>
|
||
</WizardSection> |