From 40d1ecc9a7cb2542c42542615492edd383d2d8b9 Mon Sep 17 00:00:00 2001 From: ITGuyLevi Date: Fri, 6 Oct 2023 04:52:12 -0700 Subject: [PATCH] Upload files to "AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03" --- .../Labs/03/az104-03b-md-parameters.json | 27 +++++++++ .../Labs/03/az104-03b-md-template.json | 60 +++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-parameters.json create mode 100644 AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-template.json diff --git a/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-parameters.json b/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-parameters.json new file mode 100644 index 0000000..3199a4c --- /dev/null +++ b/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-parameters.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "diskName": { + "value": "az104-03a-disk1" + }, + "location": { + "value": "eastus" + }, + "sku": { + "value": "Standard_LRS" + }, + "diskSizeGb": { + "value": 32 + }, + "createOption": { + "value": "empty" + }, + "diskEncryptionSetType": { + "value": "EncryptionAtRestWithPlatformKey" + }, + "networkAccessPolicy": { + "value": "AllowAll" + } + } +} diff --git a/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-template.json b/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-template.json new file mode 100644 index 0000000..ccd2e37 --- /dev/null +++ b/AZ104/MicrosoftAureAdministrator/Allfiles/Labs/03/az104-03b-md-template.json @@ -0,0 +1,60 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "diskName": { + "type": "String" + }, + "location": { + "type": "String" + }, + "sku": { + "type": "String" + }, + "diskSizeGb": { + "type": "Int" + }, + "sourceResourceId": { + "type": "String" + }, + "sourceUri": { + "type": "String" + }, + "osType": { + "type": "String" + }, + "createOption": { + "type": "String" + }, + "hyperVGeneration": { + "defaultValue": "V1", + "type": "String" + }, + "diskEncryptionSetType": { + "type": "String" + }, + "networkAccessPolicy": { + "type": "String" + } + }, + "resources": [ + { + "type": "Microsoft.Compute/disks", + "apiVersion": "2020-05-01", + "name": "[parameters('diskName')]", + "location": "[parameters('location')]", + "tags": {}, + "sku": { + "name": "[parameters('sku')]" + }, + "properties": { + "creationData": { + "createOption": "[parameters('createOption')]" + }, + "diskSizeGB": "[parameters('diskSizeGb')]", + "osType": "[parameters('osType')]", + "networkAccessPolicy": "[parameters('networkAccessPolicy')]" + } + } + ] +}