Delete Allfiles/Interactive Lab Simulation Files/03 directory

This commit is contained in:
staleycyn 2025-06-11 18:33:34 -07:00 committed by GitHub
parent 9b3bb8957a
commit 7d72343945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 80 deletions

View File

@ -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"
}
}
}

View File

@ -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')]"
}
}
]
}