Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit bd79405

Browse files
authored
Merge pull request #849 from WigF1/master
Minor corrections
2 parents 5f025b0 + a4a7f9a commit bd79405

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

Instructions/Labs/AZ-204_lab_01.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ In this lab, you will explore how to create a web application on Azure by using
6262

6363
1. On the **Storage accounts** blade, select **+ Create**.
6464

65-
1. On the **Create a storage account** blade, on the **Basics** tab, perform the following actions, and then select **Review**:
65+
1. On the **Create a storage account** blade, on the **Basics** tab, perform the following actions, and then select **Review + create**:
6666

6767
| Setting | Action |
6868
|--|--|
@@ -78,7 +78,7 @@ In this lab, you will explore how to create a web application on Azure by using
7878

7979
![Create a storage account blade](./media/l01_create_a_storage_account.png)
8080

81-
1. On the **Review** tab, review the options that you selected during the previous steps.
81+
1. On the **Review + create** tab, review the options that you selected during the previous steps.
8282

8383
1. Select **Create** to create the storage account by using your specified configuration.
8484

@@ -137,6 +137,7 @@ In this lab, you will explore how to create a web application on Azure by using
137137
| **Subscription** drop-down list | Retain the default value |
138138
| **Resource group** section | Select **ManagedPlatform** |
139139
| **Name** text box | Enter **imgapi**_[yourname]_ |
140+
| **Secure unique default hostname** | **Disabled** |
140141
| **Publish** section | Select **Code** |
141142
| **Runtime stack** drop-down list | Select **.NET 8 (LTS)** |
142143
| **Operating System** section | Select **Windows** |
@@ -281,6 +282,7 @@ In this exercise, you created a web app in Azure, and then deployed your `ASP.NE
281282
| **Subscription** drop-down list | Retain the default value |
282283
| **Resource group** section | Select **ManagedPlatform** |
283284
| **Name** text box | Enter **imgweb**_[yourname]_ |
285+
| **Secure unique default hostname** | **Disabled** |
284286
| **Publish** section | Select **Code** |
285287
| **Runtime stack** drop-down list | Select **.NET 8 (LTS)** |
286288
| **Operating System** section | Select **Windows** |

Instructions/Labs/AZ-204_lab_04.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,12 @@ In this exercise, you created the Azure resources that you'll need for the polyg
220220

221221
1. On line 18, set the value of **PartitionKey** by replacing the empty string with **"/Category"**.
222222

223+
> **Note**: You need to select the two quotation characters so you overwrite them.
224+
223225
1. On line 19, set the value of **JsonFilePath** by replacing the empty string with **"F:\\\\Allfiles\\\\Labs\\\\04\\\\Starter\\\\AdventureWorks\\\\AdventureWorks.Upload\\\\models.json"**.
224226

227+
> **Note**: You need to select the two quotation characters so you overwrite them.
228+
225229
1. Within the try block, note the invocation of the **CreateDatabaseIfNotExistsAsync** method of the **CosmosClient** class. This will create a database if one doesn't already exist.
226230

227231
1. Note the invocation of the **DefineContainer** method of the **Database** class. This will create a container that will host the JSON items if one doesn't already exist.

Instructions/Labs/AZ-204_lab_08.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,30 +55,27 @@ In this proof of concept, you will create a containerized application to host a
5555

5656
1. On the **App Services** blade, select **+ Create**.
5757

58-
1. On the **Create Web App** blade, on the **Basics** tab, perform the following actions:
58+
1. On the **Create Web App** blade, on the **Basics** tab, perform the following actions, and then select the **Container** tab:
5959

6060
| Setting | Action |
6161
| -- | -- |
6262
| **Subscription** drop-down list | Retain the default value |
6363
| **Resource group** section | Select **Create new**, enter **ApiService**, and then select **OK** |
6464
| **Name** text box | Enter **httpapi** *[yourname]* |
65+
| **Secure unique default hostname** | **Disabled** |
6566
| **Publish** section | Select **Container** |
6667
| **Operating System** section | Select **Linux** |
6768
| **Region** drop-down list | Select the same Azure region as your resource group location |
6869
| **Linux Plan** section | Select **Create new**, enter the value **ApiPlan** in the **Name** text box, and then select **OK** |
6970
| **Pricing plan** section | Select **Explore pricing plans**, on the **Select App Service Pricing Plan** page, select **Basic B1**, and then select **Select** |
7071

71-
1. Select **Next: Database >**.
72-
73-
1. Select **Next: Container >**.
74-
75-
1. On the **Docker** tab, perform the following actions, and then select **Review + create**:
72+
1. On the **Container** tab, perform the following actions, and then select **Review + create**:
7673

7774
| Setting | Action |
7875
| -- | -- |
79-
| **Image Source** drop-down list | Select **Docker Hub or other registries** |
80-
| **Options** drop-down list | Select **Single Container** |
81-
| **Access Type** drop-down list | Select **Public** |
76+
| **Image Source** | Select **Other container registries** |
77+
| **Access Type** | Select **Public** |
78+
| **Registry server URL** | `https://index.docker.io` |
8279
| **Image and tag** text box | Enter **kennethreitz/httpbin:latest** |
8380

8481
1. On the **Review + create** tab, review the options that you selected during the previous steps.
@@ -95,6 +92,8 @@ In this proof of concept, you will create a containerized application to host a
9592

9693
1. On the blade displaying the newly created app properties, select **Browse**.
9794

95+
>**Note**: There may be a 2-3 minute delay before the web page renders. If a 504 Gateway timeout occurs, Refresh your browser.
96+
9897
1. Within the web application, perform the following actions:
9998

10099
a. Select **Response formats**.

Instructions/Labs/AZ-204_lab_09.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ In this lab, you will start with a proof-of-concept web app, hosted in a contain
120120
| **Subscription** drop-down list | Retain the default value |
121121
| **Resource group** drop-down list | Select **PubSubEvents** in the list |
122122
| **Name** text box | Enter **eventviewer**_[yourname]_ |
123+
| **Secure unique default hostname** | **Disabled** |
123124
| **Publish** section | Select **Container** |
124125
| **Operating System** section | Select **Linux** |
125126
| **Region** drop-down list | Select **East US** |

0 commit comments

Comments
 (0)