You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/tutorial-java-quarkus-connect-managed-identity-postgresql-database.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ What you will learn:
19
19
20
20
> [!div class="checklist"]
21
21
> * Configure a Quarkus app to authenticate using Azure Active Directory (Azure AD) with a PostgreSQL Database.
22
-
> * Create an Azure Container Registry and push a Java app image to it.
22
+
> * Create an Azure container registry and push a Java app image to it.
23
23
> * Create a Container App in Azure.
24
24
> * Create a PostgreSQL database in Azure.
25
25
> * Connect to a PostgreSQL Database with managed identity using Service Connector.
@@ -45,7 +45,7 @@ The following example creates a resource group named `myResourceGroup` in the Ea
45
45
az group create --name myResourceGroup --location eastus
46
46
```
47
47
48
-
Create an Azure Container Registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, `myContainerRegistry007` is used. Update this to a unique value.
48
+
Create an Azure container registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, `myContainerRegistry007` is used. Update this to a unique value.
49
49
50
50
```azurecli
51
51
az acr create \
@@ -153,7 +153,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
Before pushing container images, you must log in to the registry. To do so, use the [az acr login][az-acr-login] command. Specify only the registry resource name when signing in with the Azure CLI. Don't use the fully qualified login server name.
159
159
@@ -186,7 +186,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
186
186
--location $LOCATION
187
187
```
188
188
189
-
1. Create a container app with your app image by running the following command. Replace the placeholders with your values. To find Container Registry admin account details, please check[Authenticate with an Azure container registry](../container-registry/container-registry-authentication.md)
189
+
1. Create a container app with your app image by running the following command. Replace the placeholders with your values. To find the container registry admin account details, see[Authenticate with an Azure container registry](../container-registry/container-registry-authentication.md)
0 commit comments