Skip to content

Commit b3c9c39

Browse files
authored
Apply suggestions from code review
1 parent 4ccc950 commit b3c9c39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/tutorial-java-quarkus-connect-managed-identity-postgresql-database.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
190190
--location $LOCATION
191191
```
192192

193-
1. Create a container app with your app image by running the following command.
193+
1. Create a container app with your app image by running the following command:
194194

195195
```azurecli-interactive
196196
APP_NAME=my-container-app
@@ -207,7 +207,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
207207
```
208208

209209
> [!NOTE]
210-
> The options `--registry-username` and `--registry-password` are still supported but are not recommended because using the identity system is more secure.
210+
> The options `--registry-username` and `--registry-password` are still supported but aren't recommended because using the identity system is more secure.
211211
212212
## 5. Create and connect a PostgreSQL database with identity connectivity
213213

@@ -229,7 +229,7 @@ Next, create a PostgreSQL Database and configure your container app to connect t
229229
```
230230

231231
> [!NOTE]
232-
> The options `--admin-user` and `--admin-password` are still supported but are not recommended because using the identity system is more secure.
232+
> The options `--admin-user` and `--admin-password` are still supported but aren't recommended because using the identity system is more secure.
233233
234234
The following parameters are used in the above Azure CLI command:
235235

@@ -279,7 +279,7 @@ echo https://$(az containerapp show \
279279
--name $APP_NAME \
280280
--resource-group $RESOURCE_GROUP \
281281
--query properties.configuration.ingress.fqdn \
282-
-o tsv)
282+
--output tsv)
283283
```
284284

285285
When the new webpage shows your list of fruits, your app is connecting to the database using the managed identity. You should now be able to edit fruit list as before.

0 commit comments

Comments
 (0)