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/app-service/tutorial-dotnetcore-sqldb-app.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ In this tutorial, you learn how to:
54
54
You can quickly deploy the sample app in this tutorial and see it running in Azure. Just run the following commands in the [Azure Cloud Shell](https://shell.azure.com), and follow the prompt:
@@ -80,7 +81,7 @@ First, you set up a sample data-driven app as a starting point. For your conveni
80
81
:::column span="2":::
81
82
**Step 2:** In the GitHub fork:
82
83
1. Select **main** > **starter-no-infra** for the starter branch. This branch contains just the sample project and no Azure-related files or configuration.
83
-
1. Select **Code** > **Create codespace on main**.
84
+
1. Select **Code** > **Create codespace on starter-no-infra**.
84
85
The codespace takes a few minutes to set up.
85
86
:::column-end:::
86
87
:::column:::
@@ -141,9 +142,9 @@ Sign in to the [Azure portal](https://portal.azure.com/) and follow these steps
141
142
1. *Region*: Any Azure region near you.
142
143
1. *Name*: **msdocs-core-sql-XYZ** where *XYZ* is any three random characters. This name must be unique across Azure.
143
144
1. *Runtime stack*: **.NET 8 (LTS)**.
145
+
1. *Engine*: **SQLAzure**. Azure SQL Database is a fully managed platform as a service (PaaS) database engine that's always running on the latest stable version of the SQL Server.
144
146
1. *Add Azure Cache for Redis?*: **Yes**.
145
147
1. *Hosting plan*: **Basic**. When you're ready, you can [scale up](manage-scale-up.md) to a production pricing tier later.
146
-
1. Select **SQLAzure** as the database engine. Azure SQL Database is a fully managed platform as a service (PaaS) database engine that's always running on the latest stable version of the SQL Server.
147
148
1. Select **Review + create**.
148
149
1. After validation completes, select **Create**.
149
150
:::column-end:::
@@ -276,7 +277,7 @@ The creation wizard generated the connectivity string for you already as [.NET c
276
277
:::row-end:::
277
278
:::row:::
278
279
:::column span="2":::
279
-
**Step 8:** To verify that you secured the secrets:
280
+
**Step 8:** To verify that your changes:
280
281
1. From the left menu, select **Environment variables > Connection strings** again.
281
282
1. Next to **AZURE_SQL_CONNECTIONSTRING**, select **Show value**. The value should be `@Microsoft.KeyValut(...)`, which means that it's a [key vault reference](app-service-key-vault-references.md) because the secret is now managed in the key vault.
282
283
1. To verify the Redis connection string, select the **App setting** tab. Next to **AZURE_REDIS_CONNECTIONSTRING**, select **Show value**. The value should be `@Microsoft.KeyValut(...)` too.
@@ -389,7 +390,7 @@ In this step, you configure GitHub deployment using GitHub Actions. It's just on
389
390
:::column span="2":::
390
391
**Step 7:**
391
392
Back in the Deployment Center page in the Azure portal:
392
-
1. Select **Logs**. A new deployment run is already started from your committed changes. You might need to select **Refresh** to see it.
393
+
1. Select the **Logs** tab, then select **Refresh** to see the new deployment run.
393
394
1. In the log item for the deployment run, select the **Build/Deploy Logs** entry with the latest timestamp.
0 commit comments