Skip to content

Commit 6134ed0

Browse files
authored
Merge pull request #125954 from matdube/patch-2
Use name placeholder instead of an arbitrary value for storage name
2 parents d05e409 + 35b6dad commit 6134ed0

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)