Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rg.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion rg_add_eventgrid.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion rg_funcapp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down