From 028102ddddf3e9326c4dc62b4d451999587fecf0 Mon Sep 17 00:00:00 2001 From: staleycyn <45440075+staleycyn@users.noreply.github.com> Date: Fri, 9 Feb 2024 08:59:16 -0800 Subject: [PATCH] Delete New Instructions/AllFiles/Lab03/azuredeploy.bicep --- .../AllFiles/Lab03/azuredeploy.bicep | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 New Instructions/AllFiles/Lab03/azuredeploy.bicep diff --git a/New Instructions/AllFiles/Lab03/azuredeploy.bicep b/New Instructions/AllFiles/Lab03/azuredeploy.bicep deleted file mode 100644 index 1e009f67..00000000 --- a/New Instructions/AllFiles/Lab03/azuredeploy.bicep +++ /dev/null @@ -1,33 +0,0 @@ -@minLength(3) -@maxLength(11) -param storagePrefix string - -@allowed([ - 'Standard_LRS' - 'Standard_GRS' - 'Standard_RAGRS' - 'Standard_ZRS' - 'Premium_LRS' - 'Premium_ZRS' - 'Standard_GZRS' - 'Standard_RAGZRS' -]) -param storageSKU string = 'Standard_LRS' - -param location string = resourceGroup().location - -var uniqueStorageName = '${storagePrefix}${uniqueString(resourceGroup().id)}' - -resource stg 'Microsoft.Storage/storageAccounts@2021-04-01' = { - name: uniqueStorageName - location: location - sku: { - name: storageSKU - } - kind: 'StorageV2' - properties: { - supportsHttpsTrafficOnly: true - } -} - -output storageEndpoint object = stg.properties.primaryEndpoints