Azure Bicep – Limit Storage IPs from App Service
I am giving my first steps with bicep, but I feel completely stuck :-/ I want to get the public ips from a App Service, and after that, I want to limit with them the access to an storage account.…
I am giving my first steps with bicep, but I feel completely stuck :-/ I want to get the public ips from a App Service, and after that, I want to limit with them the access to an storage account.…
I have a web application generating user-delegated SAS tokens authorized by the managed identity for the app. I want to be able to monitor who uses the tokens, so I added a Correlation Id in the scid field of the…
I have data in one storage acc in dev subscription. I need to move the data to other storage acc in other subscription. Is there any way to do this by ADF by copy activity?
I'm receiving an error when just trying to upload a file into a container in Azure, using the portal. It seems the UI for uploading files changed a bit, so I'm a little inclined to believe the problem may be…
Trying to get the list of unused/inactive storage accounts in azure using powershell. Below is my script which im trying it will provide the storage account name and last modified date of your Azure storage accounts, but i need to…
I wanted to filter the entry in my Azure Storage Table and the structure looks like the following. I wanted to filter the entry's based on the given Id for example JD.98755. How can we achieve this? { "items": […
I am fairly new to Azure cloud development. I have a function app coded in C# that: Gets a record from a storage table Deletes that record Updates fields on that record (including the partition key) inserts the new record…
I am trying to setup an Azure ML workspace with Storage Accound behind the Vnet but when trying to upload an sata from Data tab I am getting below error. I have all the necessary setting as describe in the…
I've pulled in our development project and other developers have no issue. I am running Azure Storage Emulation. In my case, when I run it, I get a 404 error saying can't find the container. Drilling into it, the container…
I have the following bicep file for Azure Blobs Storage on the Standard_LRS resource storageAccount 'Microsoft.Storage/storageAccounts@2022-05-01' = { name: 'ifmsstorageaccount' location: location sku: { name: 'Standard_LRS' } kind: 'BlockBlobStorage' properties: { accessTier: 'Hot' } } when deploying to azure I…