Merge pull request #150 from jfinleynz/master

Managed Disk ARM Templates have changed
This commit is contained in:
polichtm 2020-09-10 08:58:47 -04:00 committed by GitHub
commit 5ddcf03eb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 3 deletions

View File

@ -19,6 +19,9 @@
}, },
"diskEncryptionSetType": { "diskEncryptionSetType": {
"value": "EncryptionAtRestWithPlatformKey" "value": "EncryptionAtRestWithPlatformKey"
} },
"networkAccessPolicy": {
"value": "AllowAll"
} }
}
} }

View File

@ -32,7 +32,10 @@
}, },
"diskEncryptionSetType": { "diskEncryptionSetType": {
"type": "String" "type": "String"
} },
"networkAccessPolicy": {
"type": "String",
"defaultValue" : "AllowAll"
}, },
"resources": [ "resources": [
{ {
@ -49,8 +52,10 @@
"createOption": "[parameters('createOption')]" "createOption": "[parameters('createOption')]"
}, },
"diskSizeGB": "[parameters('diskSizeGb')]", "diskSizeGB": "[parameters('diskSizeGb')]",
"osType": "[parameters('osType')]" "osType": "[parameters('osType')]",
"networkAccessPolicy": "[parameters('networkAccessPolicy')]"
} }
} }
] ]
} }
}

View File

@ -108,6 +108,7 @@ In this task, you will create an Azure disk resource by using an Azure Resource
| Disk Size Gb | **32** | | Disk Size Gb | **32** |
| Create Option | **empty** | | Create Option | **empty** |
| Disk Encryption Set Type | **EncryptionAtRestWithPlatformKey** | | 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**. 1. Select the checkbox **I agree to the terms and conditions stated above** and click **Purchase**.