Skip to content

Commit cd8ff7b

Browse files
authored
Update quickstart-terraform.md
1 parent 470a72c commit cd8ff7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/cosmos-db/mongodb/vcore/quickstart-terraform.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This document provides instructions on using Terraform to deploy Azure Cosmos DB
1919
- An Azure subscription.
2020

2121
## Terraform Configuration
22-
Create a main.tf file and include the following configuration:
22+
Create a main.tf file and include the following configuration. Replace the resource group placeholder values with your own:
2323

2424
```hcl
2525
terraform {
@@ -33,9 +33,9 @@ terraform {
3333
provider "azurerm" {
3434
features {}
3535
}
36-
resource "azurerm_resource_group" "example" {
37-
name = "gemin"
38-
location = "West Europe"
36+
resource "azurerm_resource_group" "example" { # replace if needed
37+
name = "RESOURCE_GROUP" # replace
38+
location = "West Europe" # replace if needed
3939
}
4040
resource "azurerm_resource_group_template_deployment" "terraform-arm" {
4141
name = "terraform-arm-01"
@@ -133,4 +133,4 @@ terraform apply "main.tfplan"
133133
## Next steps
134134

135135
> [!div class="nextstepaction"]
136-
> [Migration options for Azure Cosmos DB for MongoDB vCore](migration-options.md)
136+
> [Migration options for Azure Cosmos DB for MongoDB vCore](migration-options.md)

0 commit comments

Comments
 (0)