Forum Widgets
Latest Discussions
Malware on Azure storage
While some blob storage are accessed via public URL what is the best practices or recommendation to prevent malware impacting my storage does Microsoft has any inbuild capabilities or any set of tools that I need to useSolvedChandrasekhar_AryaAug 03, 2023Iron Contributor951Views0likes1Commenttotal newb; move on-premis filing to Azure
I want to migrate filing in the best way for the end user experience to be smooth; eg users navigate files using file explorer like they do for local shares or OneDrive. most of what I'm reading is more advanced than this basic requirement so I've lost the woods for the trees. NTFS is relatively simple here, so I don't even mind recreating permissions. Any resource welcomeSolvedjcouncilMar 11, 2023Copper Contributor865Views0likes2CommentsEstimating costs with Blob storage (GRS)
Dear Community, I brought a comparison of storage accounts with almost identical configuration (only Access Tier is different) from Azure Pricing Calculator (see below) that makes me think. The variant with GRS costs 20$. I have not found any references in the documentation that explain the behavior. Is the calculation correct? Can anyone give me a hint for the price difference? Kind regards, TomSolvedTomWiessnerJan 05, 2023Copper Contributor1.8KViews1like6CommentsError while trying to write in Azure Tables ('' is not a valid value for a partition key or row key)
Hi everyone, I am a beginner in Azure. I'm trying to add a row in Azure Tables storage using Python. I followed the simple example of Microsoft documentation : https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table-output?tabs=in-process%2Cstorage-extension&pivots=programming-language-python#example However, I get this error : "Microsoft.Azure.WebJobs.Extensions.Tables: '' is not a valid value for a partition key or row key" and I don't see the table created in my MicrosoftAzure Storage Explorer. I already have a functional azure function with a queueTrigger as an input binding. So, I added an ouptut binding Table in the configuration file "function.json": { "scriptFile": "__init__.py", "bindings": [ { "name": "dataSetId", "type": "queueTrigger", "direction": "in", "queueName": "local-toprep", "connection": "AzureWebJobsStorage" }, { "type": "table", "direction": "out", "name": "message", "tableName": "messages", "partitionKey": "message", "connection": "AzureWebJobsStorage" } ] } And in my main function ,I added my table "message" in the arguments and I added those lines : rowKey = str(uuid.uuid4()) data = { "Name": "Output binding message", "PartitionKey": "message", "RowKey": rowKey } message.set(json.dumps(data)) Thank you in advance for your help 🙂SolvedSarra_eAug 04, 2022Copper Contributor4KViews0likes1CommentHow to serve multiple customers with one Storage?
Hi, I am new in Azure Storage, so please forgive me if my question is silly. I created a demo for solution that involves blob storage and clients checking for app updates from that storage. It works well, but for demo I am working with enabled public read access. Now I am thinking how to make such solution more secured/restricted. My aim was to have one central storage where I place application installers and clients across multiple customers would be checking the storage. If I disable public read access though, how can I make sure all clients that I want will still have access while nobody else would have it. We're talking clients in different domains/different Azure ADs. Can someone point me to right direction please? Or is it not possible to implement in this way?SolvedMichalKala1991Oct 29, 2021Copper Contributor1.9KViews0likes3CommentsCan I enable storage account lifecycle management for my log analytics workspace?
Can I enable storage account lifecycle management for my log analytics workspace, and if so, any issues to look out for or any specific configurations for lifecycle management that is recommended? ThxSolvedJeff WalzerAug 09, 2021Iron Contributor2.5KViews0likes3CommentsAutomate Azure Backup Reports export
Hi Community experts, this customer has enabled Azure Backup Reports and would like to generate and automated backup report in a weekly or monthly basis. The documentation states that it is possible to download the reports to Excel manually https://docs.microsoft.com/en-us/azure/backup/configure-reports#export-to-excel and the customer would like to explore for automated ways to export the contents of the backup report widget as an Excel sheet as-is with existing filters applied and send it via email. Can we use Logic Apps to generate the flow? What other options could be used here? Is there maybe a runbook for automation we could use?SolvedDaniel PiedraNov 21, 2020Former Employee5.2KViews0likes3CommentsAzure Shared Storage Error
I am trying to create the shared disk using the same jason script mentioned here and getting below error- { "error": { "code": "BadRequest", "message": "This subscription is not registered to use Microsoft.Compute/SharedDisksForPremium feature." } } -------------------------------------------- Original script- https://docs.microsoft.com/en-us/azure/virtual-machines/windows/disks-shared-enable { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dataDiskName": { "type": "string", "defaultValue": "mySharedDisk" }, "dataDiskSizeGB": { "type": "int", "defaultValue": 1024 }, "maxShares": { "type": "int", "defaultValue": 2 } }, "resources": [ { "type": "Microsoft.Compute/disks", "name": "[parameters('dataDiskName')]", "location": "[resourceGroup().location]", "apiVersion": "2019-07-01", "sku": { "name": "Premium_LRS" }, "properties": { "creationData": { "createOption": "Empty" }, "diskSizeGB": "[parameters('dataDiskSizeGB')]", "maxShares": "[parameters('maxShares')]" } } ] }SolvedRaviCSPApr 25, 2020Copper Contributor4.4KViews0likes7CommentsEncryption of data stored in Azure Tables (Azure Storage)
Hello folks, Me and my team have been looking for a good way to store encrypted data in Azure Tables. The main objective here is to avoid someone with access to database to be able to read that data on the storage explorer. We have looked at encrypting it on our server logic before saving it to the db, but the solution is causing a performance hit on the application. Is there a way to achieve this directly on the Azure Tables? If it isn't, should there be? Or what else would be the best way to achieve this? Thanks!SolvedPratik KhandelwalApr 20, 2020Copper Contributor1.6KViews0likes1CommentHow to increase size of unmanaged disk attached to classic VM
Greetings. I have a classic VM (using the old Service Manager model) that I need to expand the storage on. The disk in question is a data disk, not an OS disk, and it is an Unmanaged disk of type Premium (SSD). What are my options for extending the size of this drive? Or, would it be easier to just add a new drive to this VM, assuming the VM has capacity for it? I've searched this site with no meaningful hits. Also, Googling isn't enormously helpful. I did see https://docs.microsoft.com/en-us/azure/virtual-machines/windows/expand-os-disk from docs.microsoft.com, but it seems to only speak to Resource Manager VMs. I would appreciate any thoughts. Thanks, BrianSolvedAzureBrianMar 30, 2020Brass Contributor11KViews0likes4Comments
Resources
Tags
- azure blob storage22 Topics
- azure blob13 Topics
- azure files9 Topics
- azure backup7 Topics
- storage explorer6 Topics
- Azure Data Lake4 Topics
- queue storage3 Topics
- Azure Archive3 Topics
- updates2 Topics
- azure disks1 Topic