Skip to content
Merged
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 @@ -28,7 +28,7 @@ var package_container_name = 'packages'
var python_container_name = 'python'

// Create a UAMI for the deployment script to access the storage account
resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2024-11-30' = {
name: 'uami${suffix}'
location: location
}
Expand Down
2 changes: 1 addition & 1 deletion rg_funcapp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var hostingPlanName = appName
var applicationInsightsName = appName

// Existing resources
resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2024-11-30' existing = {
name: 'uami${suffix}'
}
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' existing = {
Expand Down