From 47d1fd79075754848f0b5bd8a5fa766bc8d8607c Mon Sep 17 00:00:00 2001 From: James Finley Date: Wed, 9 Sep 2020 15:07:06 +1200 Subject: [PATCH 1/6] Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md There has been a change in the ARM template generated in the portal, and there is now an extra parameter--NetworkAccessPolicy--that needs to be completed. --- .../LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index 915cbd6f..b206fd1d 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -108,6 +108,7 @@ In this task, you will create an Azure disk resource by using an Azure Resource | Disk Size Gb | **32** | | Create Option | **empty** | | Disk Encryption Set Type | **EncryptionAtRestWithPlatformKey** | + | Network Access Policy | **AllowAll** | 1. Select the checkbox **I agree to the terms and conditions stated above** and click **Purchase**. From 74042bfa3e574ec93215f80d166d0905ffb16abe Mon Sep 17 00:00:00 2001 From: James Finley Date: Wed, 9 Sep 2020 15:09:45 +1200 Subject: [PATCH 2/6] Update az104-03b-md-template.json Added the NetworkAccessPolicy parameter that is now included in the ARM template that the portal generates. --- Allfiles/Labs/03/az104-03b-md-template.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Allfiles/Labs/03/az104-03b-md-template.json b/Allfiles/Labs/03/az104-03b-md-template.json index dceb3e86..8e7a8153 100644 --- a/Allfiles/Labs/03/az104-03b-md-template.json +++ b/Allfiles/Labs/03/az104-03b-md-template.json @@ -32,7 +32,10 @@ }, "diskEncryptionSetType": { "type": "String" - } + }, + "NetworkAccessPolicy": { + "type": "String", + "defaultValue" : "AllowAll" }, "resources": [ { From 0ad87f733432c68c8fbca513ebbd719aa7162c1d Mon Sep 17 00:00:00 2001 From: James Finley Date: Wed, 9 Sep 2020 15:11:39 +1200 Subject: [PATCH 3/6] Update az104-03b-md-template.json --- Allfiles/Labs/03/az104-03b-md-template.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Allfiles/Labs/03/az104-03b-md-template.json b/Allfiles/Labs/03/az104-03b-md-template.json index 8e7a8153..564b80a4 100644 --- a/Allfiles/Labs/03/az104-03b-md-template.json +++ b/Allfiles/Labs/03/az104-03b-md-template.json @@ -33,7 +33,7 @@ "diskEncryptionSetType": { "type": "String" }, - "NetworkAccessPolicy": { + "networkAccessPolicy": { "type": "String", "defaultValue" : "AllowAll" }, @@ -52,7 +52,8 @@ "createOption": "[parameters('createOption')]" }, "diskSizeGB": "[parameters('diskSizeGb')]", - "osType": "[parameters('osType')]" + "osType": "[parameters('osType')]", + "networkAccessPolicy": "[parameters('networkAccessPolicy')]" } } ] From 5085bf4d5df78151afcf93e65f1819141acad27a Mon Sep 17 00:00:00 2001 From: James Finley Date: Wed, 9 Sep 2020 15:12:47 +1200 Subject: [PATCH 4/6] Update az104-03b-md-parameters.json Update to match the parameters set now generated by the Azure Portal. --- Allfiles/Labs/03/az104-03b-md-parameters.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Allfiles/Labs/03/az104-03b-md-parameters.json b/Allfiles/Labs/03/az104-03b-md-parameters.json index 66690e92..338eb31a 100644 --- a/Allfiles/Labs/03/az104-03b-md-parameters.json +++ b/Allfiles/Labs/03/az104-03b-md-parameters.json @@ -19,6 +19,8 @@ }, "diskEncryptionSetType": { "value": "EncryptionAtRestWithPlatformKey" - } + }, + "networkAccessPolicy": { + "value": "AllowAll" } } From 2dd8b57a678a8053d0efd46009a96191d5ddafff Mon Sep 17 00:00:00 2001 From: James Finley Date: Thu, 10 Sep 2020 09:13:49 +1200 Subject: [PATCH 5/6] Update az104-03b-md-parameters.json --- Allfiles/Labs/03/az104-03b-md-parameters.json | 1 + 1 file changed, 1 insertion(+) diff --git a/Allfiles/Labs/03/az104-03b-md-parameters.json b/Allfiles/Labs/03/az104-03b-md-parameters.json index 338eb31a..c1e966b6 100644 --- a/Allfiles/Labs/03/az104-03b-md-parameters.json +++ b/Allfiles/Labs/03/az104-03b-md-parameters.json @@ -23,4 +23,5 @@ "networkAccessPolicy": { "value": "AllowAll" } + } } From d2a8c3461fd4b8767b053065d651d5a9ae581650 Mon Sep 17 00:00:00 2001 From: James Finley Date: Thu, 10 Sep 2020 09:19:17 +1200 Subject: [PATCH 6/6] Update az104-03b-md-template.json --- Allfiles/Labs/03/az104-03b-md-template.json | 1 + 1 file changed, 1 insertion(+) diff --git a/Allfiles/Labs/03/az104-03b-md-template.json b/Allfiles/Labs/03/az104-03b-md-template.json index 564b80a4..9f7c878d 100644 --- a/Allfiles/Labs/03/az104-03b-md-template.json +++ b/Allfiles/Labs/03/az104-03b-md-template.json @@ -58,3 +58,4 @@ } ] } +}