From e2fb1e4135a1189c7f0768c44c48f24c607fee10 Mon Sep 17 00:00:00 2001
From: ShraddhaSSwadi <73828757+ShraddhaSSwadi@users.noreply.github.com>
Date: Wed, 13 Nov 2024 15:27:54 +0530
Subject: [PATCH] Update blobfuse2-commands-secure-decrypt.md
I am proposing changes to this file post discussing with SE Sourav Gupta (souravgupta)
---
.../blobs/blobfuse2-commands-secure-decrypt.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md b/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
index 37901e544331b..0a507aa7f755c 100644
--- a/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
+++ b/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
@@ -27,7 +27,7 @@ The following flags are inherited from grandparent command [`blobfuse2`](blobfus
| Flag | Short version | Value type | Default value | Description |
|--|--|--|--|--|
-| disable-version-check | | boolean | false | Enables or disables automatic version checking of the BlobFuse2 binaries |
+| disable-version-check | | boolean | false | Enables or disables automatic version checking of the blobfuse2 binaries |
| help | -h | n/a | | Help info for the blobfuse2 command and subcommands |
### Flags inherited from the BlobFuse2 secure command
@@ -36,18 +36,18 @@ The following flags are inherited from parent command [`blobfuse2 secure`](blobf
| Flag | Value type | Default value | Description |
|--|--|--|--|
-| config-file | string | ./config.yaml | The path configuration file |
-| output-file | string | | Path and name for the output file |
-| passphrase | string | | The Key to be used for encryption or decryption
Can also be specified by environment variable BLOBFUSE2_SECURE_CONFIG_PASSPHRASE.
The key must be 16 (AES-128), 24 (AES-192), or 32 (AES-256) bytes in length. |
+| config-file | string | ./config.yaml | The path of encrypted configuration file |
+| output-file | string | | The path and name for the output decrypted configuration file |
+| passphrase | string | | The key to be used for encryption or decryption
Can also be specified by environment variable BLOBFUSE2_SECURE_CONFIG_PASSPHRASE.
The key must be 16 (AES-128), 24 (AES-192), or 32 (AES-256) bytes in length. |
## Examples
> [!NOTE]
-> The following examples assume you have already created a configuration file in the current directory.
+> The following examples assumes that you have already created a encrypted configuration file in the current directory.
Decrypt a BlobFuse2 configuration file using a passphrase:
-`blobfuse2 secure decrypt --config-file=./config.yaml --passphrase=PASSPHRASE`
+`blobfuse2 secure decrypt --config-file=./config.yaml --passphrase=PASSPHRASE --output-file=./decryptedconfig.yaml`
## See also