Skip to content

Commit c681a33

Browse files
authored
Fix capitalization
1 parent d66e460 commit c681a33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/storage-mounts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
501501
"volumes": [
502502
{
503503
"name": "azure-files-volume",
504-
"storageType": "azureFile",
504+
"storageType": "AzureFile",
505505
"storageName": "myazurefiles"
506506
}
507507
]
@@ -547,7 +547,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
547547
"volumes": [
548548
{
549549
"name": "azure-files-volume",
550-
"storageType": "nfsAzureFile",
550+
"storageType": "NfsAzureFile",
551551
"storageName": "myazurefiles"
552552
}
553553
]
@@ -560,7 +560,7 @@ The following ARM template snippets demonstrate how to add an Azure Files share
560560
561561
- Add a `volumes` array to the `template` section of your container app definition and define a volume. If you already have a `volumes` array, add a new volume to the array.
562562
- The `name` is an identifier for the volume.
563-
- For `storageType`, use `azureFile` for SMB, or `nfsAzureFile` for NFS. This value must match the storage type you defined in the environment.
563+
- For `storageType`, use `AzureFile` for SMB, or `NfsAzureFile` for NFS. This value must match the storage type you defined in the environment.
564564
- For `storageName`, use the name of the storage you defined in the environment.
565565
- For each container in the template that you want to mount Azure Files storage, define a volume mount in the `volumeMounts` array of the container definition.
566566
- The `volumeName` is the name defined in the `volumes` array.
@@ -615,7 +615,7 @@ To configure a volume mount for Azure Files storage in the Azure portal, add a f
615615
616616
# [NFS](#tab/nfs)
617617
618-
Azure portal doesn't support creating NFS Azure Files volumes. To create an NFS Azure Files volume, use the Azure CLI or ARM template.
618+
Azure portal doesn't support creating NFS Azure Files volumes. To create an NFS Azure Files volume, use the [Azure CLI](storage-mounts.md?tabs=nfs&pivots=azure-cli#azure-files) or [ARM template](storage-mounts.md?tabs=nfs&pivots=azure-resource-manager#azure-files).
619619
620620
---
621621

0 commit comments

Comments
 (0)