Skip to content

Commit 1e6626b

Browse files
StefanStefan
authored andcommitted
cli update
1 parent 8c42cfd commit 1e6626b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/postgresql/flexible-server/connect-azure-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ This quickstart demonstrates how to connect to an Azure Database for PostgreSQL
2525
- An Azure account with an active subscription. If you don't have one, [get a free trial](https://azure.microsoft.com/free/).
2626
- Install [Azure CLI](/cli/azure/install-azure-cli) latest version.
2727
- Log in using Azure CLI with `az login` command.
28-
- (optional) Turn on an experimental parameter persistence with `az config param-persist on`. Parameter persistence will help you use local context without having to repeat numerous arguments like resource group or location.
28+
- (optional) Turn on an experimental parameter persistence with `az config param-persist on`. Parameter persistence helps you use local context without having to repeat numerous arguments like resource group or location.
2929

3030
## Create Azure Database for PostgreSQL flexible server instance
3131

32-
The first thing to create is a managed Azure Database for PostgreSQL flexible server instance. In [Azure Cloud Shell](https://shell.azure.com/), run the following script and make a note of the **server name**, **username** and **password** generated from this command.
32+
The first thing to create is a managed Azure Database for PostgreSQL flexible server instance. In [Azure Cloud Shell](https://shell.azure.com/), run the following script and make a note of the **server name**, **username, and **password** generated from this command.
3333

3434
```azurecli-interactive
3535
az postgres flexible-server create --public-access <your-ip-address>
@@ -55,7 +55,7 @@ az postgres flexible-server connect \
5555
az postgres flexible-server connect \
5656
-n postgresdemoserver -u dbuser -p "dbpassword" -d postgres
5757
```
58-
You'll see the output if the connection was successful.
58+
You see the output if the connection was successful.
5959
```output
6060
Successfully connected to <servername>.
6161
```
@@ -82,7 +82,7 @@ az postgres flexible-server connect \
8282
-n postgresdemoserver -u dbuser -p "dbpassword" -d flexibleserverdb --interactive
8383
```
8484

85-
You'll see the **psql** shell experience as shown below:
85+
You see the **psql** shell experience as shown below:
8686

8787
```bash
8888
Password for starchylapwing9:
@@ -116,7 +116,7 @@ az postgres flexible-server execute \
116116
-q "SELECT 1" --output table
117117
```
118118

119-
You'll see an output as shown below:
119+
You see an output as shown below:
120120

121121
```output
122122
Successfully connected to server372060240.
@@ -144,7 +144,7 @@ az postgres flexible-server execute \
144144
-f "./test.sql"
145145
```
146146

147-
You'll see an output as shown below:
147+
You see an output as shown below:
148148

149149
```output
150150
Command group 'postgres flexible-server' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus

0 commit comments

Comments
 (0)