Skip to content

Commit c5821a7

Browse files
author
gicheng
committed
Corrected tab issues
1 parent 1e725ec commit c5821a7

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

articles/cosmos-db/sql/quick-create-terraform.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ An Azure subscription or free Azure Cosmos DB trial account
2424

2525
- [!INCLUDE [quickstarts-free-trial-note](../../../includes/quickstarts-free-trial-note.md)]
2626

27-
Terraform should be installed on your local computer. Installation instructions can b
27+
Terraform should be installed on your local computer. Installation instructions can be found [here](https://learn.hashicorp.com/tutorials/terraform/install-cli).
2828

2929
## Review the Terraform File
3030

@@ -64,18 +64,20 @@ Three Cosmos DB resources are defined in the main terraform file.
6464

6565
Use the Azure portal, Azure CLI, or Azure PowerShell to list the deployed resources in the resource group.
6666

67-
### [CLI](#tab/CLI)
67+
# [CLI](#tab/CLI)
6868

6969
```azurecli-interactive
70-
az resource list --resource-group exampleRG
70+
az resource list --resource-group "your resource group name"
7171
```
7272

73-
### [PowerShell](#tab/PowerShell)
73+
# [PowerShell](#tab/PowerShell)
7474

7575
```azurepowershell-interactive
76-
Get-AzResource -ResourceGroupName exampleRG
76+
Get-AzResource -ResourceGroupName "your resource group name"
7777
```
7878

79+
---
80+
7981
## Clean up resources
8082

8183
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place.
@@ -93,6 +95,8 @@ az group delete --name exampleRG
9395
Remove-AzResourceGroup -Name exampleRG
9496
```
9597

98+
---
99+
96100
## Next steps
97101

98102
In this quickstart, you created an Azure Cosmos account, a database and a container via terraform and validated the deployment. To learn more about Azure Cosmos DB and Terraform, continue on to the articles below.

0 commit comments

Comments
 (0)