open-vault/website/source/layouts/docs.erb
2018-11-09 09:46:28 -08:00

359 lines
9.1 KiB
Plaintext

<% @meganav_title = 'Docs' %>
<% wrap_layout :inner do %>
<% content_for :sidebar do %>
<div class="nav docs-nav">
<hashi-docs-sidenav
category='docs'
current_page='<%= current_page.path %>'
data="<%= encode(get_sidebar_data('docs')) %>"
order="<%= encode([
{
category: 'install',
}, {
category: 'internals',
content: [
'architecture',
'high-availability',
'security',
'telemetry',
'token',
'rotation',
'replication',
'plugins'
]
}, {
category: 'concepts',
content: [
'dev-server',
'seal',
'lease',
'auth',
'tokens',
'response-wrapping',
'policies',
'ha',
'pgp-gpg-keybase'
]
}, {
category: 'configuration',
content: [
{
category: 'listener',
content: ['tcp']
}, {
category: 'seal',
content: [
'alicloudkms',
'awskms',
'azurekeyvault',
'gcpckms',
'pkcs11'
]
}, {
category: 'storage',
content: [
'azure',
'cassandra',
'cockroachdb',
'consul',
'couchdb',
'dynamodb',
'etcd',
'filesystem',
'foundationdb',
'google-cloud-spanner',
'google-cloud-storage',
'in-memory',
'manta',
'mysql',
'postgresql',
's3',
'swift',
'zookeeper'
]
},
'telemetry',
{ category: 'ui' }
]
}, {
category: 'commands',
content: [
'agent',
{
category: 'audit',
content: [
'disable',
'enable',
'list'
]
}, {
category: 'auth',
content: [
'disable',
'enable',
'help',
'list',
'tune'
]
},
'delete',
{
category: 'lease',
content: ['renew', 'revoke']
},
'list',
'login',
'namespace',
{
category: 'operator',
content: [
'generate-root',
'init',
'key-status',
'migrate',
'rekey',
'rotate',
'seal',
'step-down',
'unseal'
]
},
'path-help',
{
category: 'plugin',
content: [
'deregister',
'info',
'list',
'register'
]
},
{
category: 'policy',
content: [
'delete',
'fmt',
'list',
'read',
'write'
]
},
'read',
{
category: 'secrets',
content: [
'disable',
'enable',
'list',
'move',
'tune'
]
},
'server',
'ssh',
'status',
{
category: 'token',
content: [
'capabilities',
'create',
'lookup',
'renew',
'revoke'
]
},
'unwrap',
'write',
'token-helper'
]
}, {
category: 'agent',
content: [
{
category: 'autoauth',
content: [
{
category: 'methods',
content: [
'alicloud',
'aws',
'azure',
'gcp',
'jwt',
'kubernetes'
]
}, {
category: 'sinks',
content: ['file']
}
]
}
]
},
'----------------',
{
category: 'secrets',
content: [
{ category: 'ad' },
{ category: 'alicloud' },
{ category: 'aws' },
{ category: 'azure' },
{ category: 'consul' },
{ category: 'cubbyhole' },
{
category: 'databases',
content: [
'cassandra',
'hanadb',
'mongodb',
'mssql',
'mysql-maria',
'postgresql',
'oracle',
'custom'
]
},
{ category: 'gcp' },
{ category: 'gcpkms' },
{
category: 'kv',
content: ['kv-v1','kv-v2']
},
{ category: 'identity' },
{ category: 'nomad' },
{ category: 'pki' },
{ category: 'rabbitmq' },
{
category: 'ssh',
content: [
'signed-ssh-certificates',
'one-time-ssh-passwords',
'dynamic-ssh-keys'
]
},
{ category: 'totp' },
{ category: 'transit' },
'------------------------',
{ category: 'cassandra' },
{ category: 'mongodb' },
{ category: 'mssql' },
{ category: 'mysql' },
{ category: 'postgresql' }
]
}, {
category: 'auth',
content: [
'approle',
'alicloud',
'aws',
'azure',
'gcp',
'jwt',
'kubernetes',
'github',
'ldap',
'okta',
'radius',
'cert',
'token',
'userpass',
'---------',
'app-id',
'mfa'
]
}, {
category: 'audit',
content: [
'file',
'syslog',
'socket'
]
}, {
category: 'plugin'
},
'----------------',
{
category: 'what-is-vault',
},
{
category: 'use-cases',
},
{
category: 'partnerships'
},
{
category: 'vs',
content: [
'chef-puppet-etc',
'hsm',
'dropbox',
'consul',
'kms',
'keywhiz',
'custom'
]
},
'----------------',
{
category: 'upgrading',
content: [
'upgrade-to-0.5.0',
'upgrade-to-0.5.1',
'upgrade-to-0.6.0',
'upgrade-to-0.6.1',
'upgrade-to-0.6.2',
'upgrade-to-0.6.3',
'upgrade-to-0.6.4',
'upgrade-to-0.7.0',
'upgrade-to-0.8.0',
'upgrade-to-0.9.0',
'upgrade-to-0.9.1',
'upgrade-to-0.9.2',
'upgrade-to-0.9.3',
'upgrade-to-0.9.6',
'upgrade-to-0.10.0',
'upgrade-to-0.10.2',
'upgrade-to-0.10.4',
'upgrade-to-0.11.0',
'upgrade-to-0.11.2'
]
},
'----------------',
{
category: 'enterprise',
content: [
{ category: 'replication' },
{
category: 'hsm',
content: ['behavior', 'security']
},
{ category: 'sealwrap' },
{ category: 'namespaces' },
{ category: 'performance-standby' },
{ category: 'control-groups' },
{
category: 'mfa',
content: [
'mfa-duo',
'mfa-okta',
'mfa-pingid',
'mfa-totp'
]
},
{
category: 'sentinel',
content: ['examples', 'properties']
}
]
}
]) %>")
></hashi-docs-sidenav>
</div>
<% end %>
<article class='g-content vault'>
<%= yield %>
</article>
<% end %>