Skip to content

Commit b61879e

Browse files
committed
Update Key Vault resource API version to 2024-11-01
1 parent fe761c5 commit b61879e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

infra/modules/services/api-management.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ resource appInsights 'Microsoft.Insights/components@2020-02-02' existing = {
5353
name: appInsightsName
5454
}
5555

56-
resource keyVault 'Microsoft.KeyVault/vaults@2023-07-01' existing = {
56+
resource keyVault 'Microsoft.KeyVault/vaults@2024-11-01' existing = {
5757
name: keyVaultName
5858
}
5959

@@ -166,7 +166,7 @@ resource apimInsightsDiagnostics 'Microsoft.ApiManagement/service/diagnostics@20
166166

167167
// Store master subscription key in Key Vault
168168

169-
resource apimMasterSubscriptionKeySecret 'Microsoft.KeyVault/vaults/secrets@2023-07-01' = {
169+
resource apimMasterSubscriptionKeySecret 'Microsoft.KeyVault/vaults/secrets@2024-11-01' = {
170170
name: 'apim-master-subscription-key'
171171
parent: keyVault
172172
properties: {

infra/modules/services/key-vault.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ param keyVaultName string
2525

2626
// Key Vault (see also: https://learn.microsoft.com/en-us/azure/key-vault/secrets/quick-create-bicep?tabs=CLI)
2727

28-
resource keyVault 'Microsoft.KeyVault/vaults@2023-07-01' = {
28+
resource keyVault 'Microsoft.KeyVault/vaults@2024-11-01' = {
2929
name: keyVaultName
3030
location: location
3131
tags: tags

infra/modules/shared/assign-roles-to-principal.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ resource eventHubsNamespace 'Microsoft.EventHub/namespaces@2024-01-01' existing
7070
name: eventHubSettings!.namespaceName
7171
}
7272

73-
resource keyVault 'Microsoft.KeyVault/vaults@2023-07-01' existing = {
73+
resource keyVault 'Microsoft.KeyVault/vaults@2024-11-01' existing = {
7474
name: keyVaultName
7575
}
7676

0 commit comments

Comments
 (0)