Skip to content

Commit 35b6dad

Browse files
authored
Use name placeholder instead of an arbitrary value for storage name
This version is less likely to confuse the users and is more consistent with the rest of the doc. I think when the documentation was written the included storage account name should have been replaced with the <STORAGE_NAME> placeholder. I presume it was simply forgotten or is an artifact of an old version of the documentation
1 parent 34f5e4f commit 35b6dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-deploy-container-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Use these commands to create your required Azure resources:
8484
principalId=$(az identity create --name <USER_IDENTITY_NAME> --resource-group AzureFunctionsContainers-rg --location eastus --query principalId -o tsv)
8585
acrId=$(az acr show --name <REGISTRY_NAME> --query id --output tsv)
8686
az role assignment create --assignee-object-id $principalId --assignee-principal-type ServicePrincipal --role acrpull --scope $acrId
87-
storageId=$(az storage account show --resource-group AzureFunctionsContainers-rg --name glengatestaca2 --query 'id' -o tsv)
87+
storageId=$(az storage account show --resource-group AzureFunctionsContainers-rg --name <STORAGE_NAME> --query 'id' -o tsv)
8888
az role assignment create --assignee-object-id $principalId --assignee-principal-type ServicePrincipal --role "Storage Blob Data Owner" --scope $storageId
8989
```
9090

0 commit comments

Comments
 (0)