Skip to content

Commit 305df0e

Browse files
committed
Update tutorial-django-app-service-postgres.md
1 parent 8c63eba commit 305df0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/flexible-server/tutorial-django-app-service-postgres.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,16 @@ These changes are specific to configuring Django to run in any production enviro
7676
Create a private flexible server and a database inside a virtual network (VNET) using the following command:
7777

7878
```azurecli
79-
# Create Flexible server in a VNET
79+
# Create Flexible server in a private virtual network (VNET)
8080
81-
az postgres flexible-server create --resource-group myresourcegroup --location westus2
81+
az postgres flexible-server create --resource-group myresourcegroup --vnet myvnet --location westus2
8282
```
8383

8484
This command performs the following actions, which may take a few minutes:
8585

8686
- Create the resource group if it doesn't already exist.
8787
- Generates a server name if it isn't provided.
88-
- Create a new virtual network for your new postgreSQL server. **Make a note of virtual network name and subnet name** created for your server since you need to add the web app to the same virtual network.
88+
- Create a new virtual network for your new postgreSQL server, if you choose to do so after prompted. **Make a note of virtual network name and subnet name** created for your server since you need to add the web app to the same virtual network.
8989
- Creates admin username, password for your server if not provided. **Make a note of the username and password** to use in the next step.
9090
- Create a database ```postgres``` that can be used for development. You can run [**psql** to connect to the database](quickstart-create-server-portal.md#connect-to-the-postgresql-database-using-psql) to create a different database.
9191

0 commit comments

Comments
 (0)