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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ LOCATION="eastus"
48
48
az group create --name $RESOURCE_GROUP --location $LOCATION
49
49
```
50
50
51
-
Create an Azure container registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command and retrieve its login server using the [az acr show](/cli/azure/acr#az-acr-show) command. The registry name must be unique within Azure, contain 5-50 alphanumeric characters. All letters must be specified in lower case. In the following example, `mycontainerregistry007` is used. Update this to a unique value.
51
+
Create an Azure container registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command and retrieve its login server using the [az acr show](/cli/azure/acr#az-acr-show) command. The registry name must be unique within Azure and contain 5-50 alphanumeric characters. All letters must be specified in lower case. In the following example, `mycontainerregistry007` is used. Update this to a unique value.
52
52
53
53
```azurecli-interactive
54
54
REGISTRY_NAME=mycontainerregistry007
@@ -233,11 +233,11 @@ Next, create a PostgreSQL Database and configure your container app to connect t
233
233
234
234
The following parameters are used in the above Azure CLI command:
235
235
236
-
**resource-group*→ Use the same resource group name in which you created the web app, for example `msdocs-quarkus-postgres-webapp-rg`.
236
+
**resource-group*→ Use the same resource group name in which you created the web app - for example,`msdocs-quarkus-postgres-webapp-rg`.
237
237
**name*→ The PostgreSQL database server name. This name must be **unique across all Azure** (the server endpoint becomes `https://<name>.postgres.database.azure.com`). Allowed characters are `A`-`Z`, `0`-`9`, and `-`. A good pattern is to use a combination of your company name and server identifier. (`msdocs-quarkus-postgres-webapp-db`)
238
238
**location*→ Use the same location used for the web app. Change to a different location if it doesn't work.
239
239
**public-access*→`None` which sets the server in public access mode with no firewall rules. Rules will be created in a later step.
240
-
**sku-name*→ The name of the pricing tier and compute configuration, for example `Standard_B1ms`. For more information, see [Azure Database for PostgreSQL pricing](https://azure.microsoft.com/pricing/details/postgresql/server/).
240
+
**sku-name*→ The name of the pricing tier and compute configuration - for example,`Standard_B1ms`. For more information, see [Azure Database for PostgreSQL pricing](https://azure.microsoft.com/pricing/details/postgresql/server/).
241
241
**tier*→ The compute tier of the server. For more information, see [Azure Database for PostgreSQL pricing](https://azure.microsoft.com/pricing/details/postgresql/server/).
242
242
**active-directory-auth*→`Enabled` to enable Microsoft Entra authentication.
0 commit comments