From a39081df3e292262943d7ae841a573ba4a7a40da Mon Sep 17 00:00:00 2001
From: ShraddhaSSwadi <73828757+ShraddhaSSwadi@users.noreply.github.com>
Date: Tue, 12 Nov 2024 19:44:11 +0530
Subject: [PATCH] Update blobfuse2-commands-secure-set.md
I have made the changes to blobfuse2 commands post speaking with SE Sourav Gupta (souravgupta)
---
.../storage/blobs/blobfuse2-commands-secure-set.md | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/articles/storage/blobs/blobfuse2-commands-secure-set.md b/articles/storage/blobs/blobfuse2-commands-secure-set.md
index fdc06a25f3fea..be054c0370da2 100644
--- a/articles/storage/blobs/blobfuse2-commands-secure-set.md
+++ b/articles/storage/blobs/blobfuse2-commands-secure-set.md
@@ -11,7 +11,7 @@ ms.author: akashdubey
# How to use the BlobFuse2 secure set command to change the value of a parameter in an encrypted BlobFuse2 configuration file
-Use the `blobfuse2 secure set` command to change the value of a specified parameter in an encrypted BlobFuse2 configuration file.
+Use the `blobfuse2 secure set` command to change the value of a specified parameter in an encrypted blobfuse2 configuration file.
## Syntax
@@ -36,9 +36,9 @@ 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 the encrypted configuration file |
+| output-file | string | | The 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. |
### Flags that apply only to the BlobFuse2 secure set command
@@ -46,8 +46,8 @@ The following flags apply only to command `blobfuse2 secure set` command:
| Flag | Short
version | Value
type | Default
value | Description |
|--|--|--|--|--|
-| key | | string | | Configuration key (parameter) to be updated in an encrypted config file |
-| value | | string | | New value for the configuration key (parameter) to be updated in an encrypted config file |
+| key | | string | | The configuration key (parameter) to be updated in an encrypted configuration file |
+| value | | string | | The new value for the configuration key (parameter) to be updated in an encrypted configuration file |
## Examples
@@ -56,7 +56,7 @@ The following flags apply only to command `blobfuse2 secure set` command:
Set the value of parameter `logging.log_level` in an encrypted BlobFuse2 configuration file to "log_debug":
-`blobfuse2 secure set --config-file=config.yaml --passphrase=PASSPHRASE --key=logging.log_level --value=log_debug`
+`blobfuse2 secure set --config-file=./config.yaml --passphrase=PASSPHRASESAMPLE --key=logging.log_level --value=log_debug`
## See also