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 contrib/aks/aks.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ resource prometheusContainer 'Microsoft.Storage/storageAccounts/blobServices/con
}

// AKS
resource aks 'Microsoft.ContainerService/managedClusters@2024-03-02-preview' = {
resource aks 'Microsoft.ContainerService/managedClusters@2024-05-01' = {
name: 'aks-openpai'
location: location
dependsOn: [
Expand Down
2 changes: 1 addition & 1 deletion contrib/aks/provisionscript.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ param hubsub string
param hubgroup string
param extversion string

resource aks 'Microsoft.ContainerService/managedClusters@2024-03-02-preview' existing = {
resource aks 'Microsoft.ContainerService/managedClusters@2024-05-01' existing = {
name: 'aks-openpai'
scope: resourceGroup(hubsub, hubgroup)
}
Expand Down