]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: add SSE-KMS with Vault using token auth 29783/head
authorSergio de Carvalho <scarvalhojr@gmail.com>
Fri, 4 Oct 2019 14:55:51 +0000 (15:55 +0100)
committerSergio de Carvalho <scarvalhojr@gmail.com>
Fri, 4 Oct 2019 14:55:51 +0000 (15:55 +0100)
Clarify supported secret engine in the Vault documentation.

Signed-off-by: Andrea Baglioni <andrea.baglioni@workday.com>
Signed-off-by: Sergio de Carvalho <sergio.carvalho@workday.com>
doc/radosgw/vault.rst

index 0cbae3407755678c9dc7181313ebda12715deba6..d14b455c7e79c737623f142f591e2fa5a3a8bd5c 100644 (file)
@@ -25,8 +25,11 @@ Create a key in Vault
 =====================
 
 Generate and save a 256-bit key in Vault. Vault provides several Secret
-Engines, which store, generate, and encrypt data. For instance, create a key
-in the `KV Secrets engine`_ using Vault's command line client::
+Engines, which store, generate, and encrypt data. Currently, the only secret
+engine supported is the `KV Secrets engine`_ version 2.
+
+To create a key in the KV version 2 engine using Vault's command line client,
+use the commands below::
 
   export VAULT_ADDR='http://vaultserver:8200'
   vault kv put secret/myproject/mybucketkey key=$(dd bs=32 count=1 if=/dev/urandom of=/dev/stdout 2>/dev/null | base64)