Skip to content

Commit 435ea16

Browse files
authored
Update create-resource-azcli.md
1 parent 321827f commit 435ea16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/quickstarts/includes/create-resource-azcli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ Note that if you're planning on using phone numbers, you can't use the free tria
1717

1818
To create an Azure Communication Services resource, [sign in to Azure CLI](/cli/azure/authenticate-azure-cli). You can do this through the terminal using the ```az login``` command and providing your credentials. Run the following command to create the resource:
1919

20-
```azurecli
20+
```azurepowershell-interactive
2121
az communication create --name "<communicationName>" --location "Global" --data-location "United States" --resource-group "<resourceGroup>"
2222
```
2323

2424
If you would like to select a specific subscription you can also specify the ```--subscription``` flag and provide the subscription ID.
25-
```
25+
```azurepowershell-interactive
2626
az communication create --name "<communicationName>" --location "Global" --data-location "United States" --resource-group "<resourceGroup> --subscription "<subscriptionID>"
2727
```
2828

@@ -38,7 +38,7 @@ In the next step, you can assign tags to the resource. Tags can be used to organ
3838

3939
To add tags to your Communication Services resource, run the following commands. You can target a specific subscription as well.
4040

41-
```azurecli
41+
```azurepowershell-interactive
4242
az communication update --name "<communicationName>" --tags newTag="newVal1" --resource-group "<resourceGroup>"
4343
4444
az communication update --name "<communicationName>" --tags newTag="newVal2" --resource-group "<resourceGroup>" --subscription "<subscriptionID>"

0 commit comments

Comments
 (0)