From 242245f2cbe6c579f41710a0424e30c0974ca36a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 06:57:22 +0000 Subject: [PATCH] Update resource Microsoft.Storage/storageAccounts to 2025-06-01 --- rg.bicep | 2 +- rg_add_eventgrid.bicep | 2 +- rg_funcapp.bicep | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rg.bicep b/rg.bicep index 1bbd563..29a395b 100644 --- a/rg.bicep +++ b/rg.bicep @@ -48,7 +48,7 @@ var common_storage_properties = { var storage_properties = use_shared_keys ? common_storage_properties : union(common_storage_properties, { allowSharedKeyAccess: false }) -resource storageAccount 'Microsoft.Storage/storageAccounts@2025-01-01' = { +resource storageAccount 'Microsoft.Storage/storageAccounts@2025-06-01' = { name: storage_account_name location: location kind: 'StorageV2' diff --git a/rg_add_eventgrid.bicep b/rg_add_eventgrid.bicep index 3e9919f..0e7469a 100644 --- a/rg_add_eventgrid.bicep +++ b/rg_add_eventgrid.bicep @@ -20,7 +20,7 @@ param storage_account_name string = 'rpmrepo${suffix}' var package_container_name = 'packages' // Define all existing resources -resource storageAccount 'Microsoft.Storage/storageAccounts@2025-01-01' existing = { +resource storageAccount 'Microsoft.Storage/storageAccounts@2025-06-01' existing = { name: storage_account_name } resource defBlobServices 'Microsoft.Storage/storageAccounts/blobServices@2025-01-01' existing = { diff --git a/rg_funcapp.bicep b/rg_funcapp.bicep index e77b88c..cb7f73b 100644 --- a/rg_funcapp.bicep +++ b/rg_funcapp.bicep @@ -45,7 +45,7 @@ var applicationInsightsName = appName resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2024-11-30' existing = { name: 'uami${suffix}' } -resource storageAccount 'Microsoft.Storage/storageAccounts@2025-01-01' existing = { +resource storageAccount 'Microsoft.Storage/storageAccounts@2025-06-01' existing = { name: storage_account_name } resource defBlobServices 'Microsoft.Storage/storageAccounts/blobServices@2025-01-01' existing = {