From b09d042173baa0fb017cbf427b8d79146eba2bcd Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Tue, 14 Nov 2017 13:11:55 -0500 Subject: [PATCH 1/3] Use super to show enterprise --- website/source/layouts/docs.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/source/layouts/docs.erb b/website/source/layouts/docs.erb index c24c8dd3d..a97ddef9c 100644 --- a/website/source/layouts/docs.erb +++ b/website/source/layouts/docs.erb @@ -98,13 +98,13 @@ seal From 4efcfe03d1129ef09e9966b8163059f10d5dab35 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Tue, 14 Nov 2017 13:12:20 -0500 Subject: [PATCH 2/3] Add an auto-unseal page to the docs This helps with SEO and also is where I'd expect auto unsealing to be referenced. --- .../docs/enterprise/auto-unseal/index.html.md | 32 +++++++++++++++++++ website/source/layouts/docs.erb | 17 ++++++---- 2 files changed, 42 insertions(+), 7 deletions(-) create mode 100644 website/source/docs/enterprise/auto-unseal/index.html.md diff --git a/website/source/docs/enterprise/auto-unseal/index.html.md b/website/source/docs/enterprise/auto-unseal/index.html.md new file mode 100644 index 000000000..3b2398c2f --- /dev/null +++ b/website/source/docs/enterprise/auto-unseal/index.html.md @@ -0,0 +1,32 @@ +--- +layout: "docs" +page_title: "Vault Enterprise Auto Unseal" +sidebar_current: "docs-vault-enterprise-auto-unseal" +description: |- + Vault Enterprise supports automatic unsealing via cloud technologies like KMS. +--- + +# Vault Enterprise Auto Unseal + +As of version 0.9, Vault Enterprise supports opt-in automatic unsealing via +cloud technologies such Amazon KMS or Google Cloud KMS. This feature enables +operators to delegate the unsealing process to trusted cloud providers to ease +operations in the event of partial failure and to aid in the creation of new or +ephemeral clusters. + +## Enabling Auto Unseal + +Automatic unsealing is not enabled by default. To enable automatic unsealing, +specify the `seal` stanza in your Vault configuration file: + +```hcl +seal "awskms" { + aws_region = "us-east-1" + access_key = "..." + secret_key = "..." + kms_key_id = "..." +} +``` + +For a complete list of examples and supported technologies, please see the +[seal documentation](/docs/configuration/seal/index.html). diff --git a/website/source/layouts/docs.erb b/website/source/layouts/docs.erb index a97ddef9c..584280a25 100644 --- a/website/source/layouts/docs.erb +++ b/website/source/layouts/docs.erb @@ -307,7 +307,7 @@ > Google Cloud - + > Kubernetes @@ -379,10 +379,13 @@ > Vault Enterprise