From 7d72343945c8e1ec5a42412bbbf14a77fc4c9093 Mon Sep 17 00:00:00 2001 From: staleycyn <45440075+staleycyn@users.noreply.github.com> Date: Wed, 11 Jun 2025 18:33:34 -0700 Subject: [PATCH] Delete Allfiles/Interactive Lab Simulation Files/03 directory --- .../03/az104-03b-md-parameters.json | 27 ---------- .../03/az104-03b-md-template.json | 53 ------------------- 2 files changed, 80 deletions(-) delete mode 100644 Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-parameters.json delete mode 100644 Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-template.json diff --git a/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-parameters.json b/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-parameters.json deleted file mode 100644 index 3199a4c3..00000000 --- a/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-parameters.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "$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/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-template.json b/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-template.json deleted file mode 100644 index 787f438d..00000000 --- a/Allfiles/Interactive Lab Simulation Files/03/az104-03b-md-template.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$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" - }, - "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')]", - "networkAccessPolicy": "[parameters('networkAccessPolicy')]" - } - } - ] -}