mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
25 lines
927 B
Plaintext
25 lines
927 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * backup_and_restore/application_backup_and_restore/installing/installing-oadp-aws.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="oadp-ssec-encrypted-backups-velero_{context}"]
|
|
= Downloading a file with an SSE-C encryption key for files backed up by Velero
|
|
|
|
[role="_abstract"]
|
|
When you are verifying an SSE-C encryption key, you can also download the file with the additional encryption key for files that were backed up with Velero.
|
|
|
|
.Procedure
|
|
|
|
* Download the file with the additional encryption key for files backed up by Velero by running the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ aws s3api get-object \
|
|
--bucket <bucket> \
|
|
--key velero/backups/mysql-persistent-customerkeyencryptionfile4/mysql-persistent-customerkeyencryptionfile4.tar.gz \
|
|
--sse-customer-key fileb://sse.key \
|
|
--sse-customer-algorithm AES256 \
|
|
--debug \
|
|
velero_download.tar.gz
|
|
---- |