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
Get started with [GitHub Actions](https://docs.github.com/en/actions) by using a workflow to deploy database updates to [Azure Database for PostgreSQL flexible server](https://azure.microsoft.com/services/postgresql/).
24
22
@@ -29,7 +27,7 @@ You need:
29
27
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
30
28
- A GitHub repository with sample data (`data.sql`). If you don't have a GitHub account, [sign up for free](https://github.com/join).
31
29
- An Azure Database for PostgreSQL flexible server instance.
32
-
-[Quickstart: Create an Azure Database for PostgreSQL - Flexible Server instance in the Azure portal](../single-server/quickstart-create-server-database-portal.md)
30
+
-[Quickstart: Create an Azure Database for PostgreSQL - Flexible Server instance in the Azure portal](quickstart-create-server-portal.md)
33
31
34
32
## Workflow file overview
35
33
@@ -48,14 +46,10 @@ The file has two sections:
48
46
49
47
## Copy the Azure Database for PostgreSQL flexible server connection string
50
48
51
-
In the Azure portal, go to your Azure Database for PostgreSQL flexible server instance and open **Settings** > **Connection strings**. Copy the **ADO.NET** connection string. Replace the placeholder values for `your_database` and `your_password`. The connection string looks similar to this.
52
-
53
-
> [!IMPORTANT]
54
-
> - For Azure Database for PostgreSQL single server, use ```user=adminusername@servername``` . Note the ```@servername``` is required.
55
-
> - For Azure Database for PostgreSQL flexible server, use ```user= adminusername``` without the ```@servername```.
49
+
In the Azure portal, go to your Azure Database for PostgreSQL flexible server instance and from the resource menu, under **Settings**, select **Connect**. In that page, use the **Database name** combo box to select the name of the database you want to connect to. Expand the **Connect from your app** section, and copy **ADO.NET** connection string, and replace the placeholder value `{your_password}` with your actual password. The connection string looks similar to this.
0 commit comments