From 86ded7d191bd073a1335a3c4dc4b6328c3eac185 Mon Sep 17 00:00:00 2001 From: staleycyn <45440075+staleycyn@users.noreply.github.com> Date: Wed, 11 Jun 2025 18:34:43 -0700 Subject: [PATCH] Delete Allfiles/Interactive Lab Simulation Files/07 directory --- .../07/LICENSE | 21 --- .../07/az104-07-vm-parameters.json | 12 -- .../07/az104-07-vm-template.json | 172 ------------------ 3 files changed, 205 deletions(-) delete mode 100644 Allfiles/Interactive Lab Simulation Files/07/LICENSE delete mode 100644 Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-parameters.json delete mode 100644 Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-template.json diff --git a/Allfiles/Interactive Lab Simulation Files/07/LICENSE b/Allfiles/Interactive Lab Simulation Files/07/LICENSE deleted file mode 100644 index 183d56b1..00000000 --- a/Allfiles/Interactive Lab Simulation Files/07/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2018 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-parameters.json b/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-parameters.json deleted file mode 100644 index ce6f20f2..00000000 --- a/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-parameters.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "vmSize": { - "value": "Standard_D2s_v3" - }, - "adminUsername": { - "value": "Student" - } - } -} diff --git a/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-template.json b/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-template.json deleted file mode 100644 index 2281a87d..00000000 --- a/Allfiles/Interactive Lab Simulation Files/07/az104-07-vm-template.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "vmSize": { - "type": "string", - "defaultValue": "Standard_D2s_v3", - "metadata": { - "description": "Virtual machine size" - } - }, - "adminUsername": { - "type": "string", - "metadata": { - "description": "Admin username" - } - }, - "adminPassword": { - "type": "securestring", - "metadata": { - "description": "Admin password" - } - } - }, - "variables": { - "vmName": "az104-07-vm0", - "nicName": "az104-07-nic0", - "virtualNetworkName": "az104-07-vnet0", - "publicIPAddressName": "az104-07-pip0", - "nsgName": "az104-07-nsg0", - "vnetIpPrefix": "10.70.0.0/22", - "subnetIpPrefix": "10.70.0.0/24", - "subnetName": "subnet0", - "subnetRef": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]", - "computeApiVersion": "2018-06-01", - "networkApiVersion": "2018-08-01" - }, - "resources": [ - { - "name": "[variables('vmName')]", - "type": "Microsoft.Compute/virtualMachines", - "apiVersion": "[variables('computeApiVersion')]", - "location": "[resourceGroup().location]", - "dependsOn": [ - "[variables('nicName')]" - ], - "properties": { - "osProfile": { - "computerName": "[variables('vmName')]", - "adminUsername": "[parameters('adminUsername')]", - "adminPassword": "[parameters('adminPassword')]", - "windowsConfiguration": { - "provisionVmAgent": "true" - } - }, - "hardwareProfile": { - "vmSize": "[parameters('vmSize')]" - }, - "storageProfile": { - "imageReference": { - "publisher": "MicrosoftWindowsServer", - "offer": "WindowsServer", - "sku": "2019-Datacenter", - "version": "latest" - }, - "osDisk": { - "createOption": "fromImage" - }, - "dataDisks": [] - }, - "networkProfile": { - "networkInterfaces": [ - { - "properties": { - "primary": true - }, - "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]" - } - ] - } - } - }, - { - "type": "Microsoft.Network/virtualNetworks", - "name": "[variables('virtualNetworkName')]", - "apiVersion": "[variables('networkApiVersion')]", - "location": "[resourceGroup().location]", - "comments": "Virtual Network", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "[variables('vnetIpPrefix')]" - ] - }, - "subnets": [ - { - "name": "[variables('subnetName')]", - "properties": { - "addressPrefix": "[variables('subnetIpPrefix')]" - } - } - ] - } - }, - { - "name": "[variables('nicName')]", - "type": "Microsoft.Network/networkInterfaces", - "apiVersion": "[variables('networkApiVersion')]", - "location": "[resourceGroup().location]", - "comments": "Primary NIC", - "dependsOn": [ - "[variables('publicIpAddressName')]", - "[variables('nsgName')]", - "[variables('virtualNetworkName')]" - ], - "properties": { - "ipConfigurations": [ - { - "name": "ipconfig1", - "properties": { - "subnet": { - "id": "[variables('subnetRef')]" - }, - "privateIPAllocationMethod": "Dynamic", - "publicIpAddress": { - "id": "[resourceId('Microsoft.Network/publicIpAddresses', variables('publicIpAddressName'))]" - } - } - } - ], - "networkSecurityGroup": { - "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]" - } - } - }, - { - "name": "[variables('publicIpAddressName')]", - "type": "Microsoft.Network/publicIpAddresses", - "apiVersion": "[variables('networkApiVersion')]", - "location": "[resourceGroup().location]", - "comments": "Public IP for Primary NIC", - "properties": { - "publicIpAllocationMethod": "Dynamic" - } - }, - { - "name": "[variables('nsgName')]", - "type": "Microsoft.Network/networkSecurityGroups", - "apiVersion": "[variables('networkApiVersion')]", - "location": "[resourceGroup().location]", - "comments": "Network Security Group (NSG) for Primary NIC", - "properties": { - "securityRules": [ - { - "name": "default-allow-rdp", - "properties": { - "priority": 1000, - "sourceAddressPrefix": "*", - "protocol": "Tcp", - "destinationPortRange": "3389", - "access": "Allow", - "direction": "Inbound", - "sourcePortRange": "*", - "destinationAddressPrefix": "*" - } - } - ] - } - } - ], - "outputs": {} -}