Skip to content

Commit 665e787

Browse files
authored
Merge pull request #300658 from MicrosoftDocs/main
Publish to live, Sunday 4:00 PM 06/01
2 parents ef8f0cc + 0f9691b commit 665e787

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

articles/sentinel/create-codeless-connector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ A section of the ARM deployment template provides a place for the administrator
189189

190190
### Use the securestring objects
191191

192-
Finally, the CCP utilizes the credential objects in the data connector section.
192+
Finally, the CCF utilizes the credential objects in the data connector section.
193193

194194
```json
195195
"auth": {

articles/storage/files/encryption-in-transit-for-nfs-shares.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,23 @@ Register through the Azure portal by searching for "Encryption in transit for Az
4646

4747
:::image type="content" source="./media/encryption-in-transit-nfs-shares/portal-registration-encryption-in-transit.png" alt-text="Diagram showing the Azure portal screen to test if EiT is applied." lightbox="./media/encryption-in-transit-nfs-shares/portal-registration-encryption-in-transit.png":::
4848

49-
5049
For more information, see [Set up preview features in Azure subscription](/azure/azure-resource-manager/management/preview-features?tabs=azure-portal).
5150

52-
5351
### [PowerShell](#tab/azure-powershell)
5452

55-
Register through PowerShell using [Register-AzProviderFeature](/powershell/module/az.resources/register-azproviderfeature)
56-
53+
Register through PowerShell using [Register-AzProviderFeature](/powershell/module/az.resources/register-azproviderfeature):
5754

58-
`Register-AzProviderFeature -FeatureName "AllowEncryptionInTransitNFS4" -ProviderNamespace "Microsoft.Storage"`
55+
```PowerShell
56+
Register-AzProviderFeature -FeatureName "AllowEncryptionInTransitNFS4" -ProviderNamespace "Microsoft.Storage"
57+
```
5958

6059
### [Azure CLI](#tab/azure-cli)
6160

62-
Register through Azure CLI using [az feature register](/cli/azure/feature)
63-
64-
`az feature register --name AllowEncryptionInTransitNFS4 --namespace Microsoft.Storage`
61+
Register through Azure CLI using [az feature register](/cli/azure/feature):
62+
63+
```bash
64+
az feature register --name AllowEncryptionInTransitNFS4 --namespace Microsoft.Storage
65+
```
6566

6667
---
6768

@@ -85,9 +86,11 @@ Follow these steps to encrypt data in transit:
8586
### Step 1: Check AZNFS mount helper package installation
8687

8788
To check if the AZNFS mount helper package is installed on your client, run the following command:
89+
8890
```bash
8991
systemctl is-active --quiet aznfswatchdog && echo -e "\nAZNFS mounthelper is installed! \n"
9092
```
93+
9194
If the package is installed, you'll see the message `AZNFS mounthelper is installed!`. If it isn't installed, you'll need to use the appropriate command to install the AZNFS mount helper package on your client.
9295

9396
### [Ubuntu/Debian](#tab/Ubuntu)

0 commit comments

Comments
 (0)