Skip to content

Commit c70024a

Browse files
Merge pull request #73 from microsoft/psl-us-40546
fix: Update resource group tags and event hub namespace module versions
2 parents 196eed9 + 7bd1c2f commit c70024a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

infra/main.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ var eventHubTags = union(allTags, {
106106
SecurityControl: 'Ignore' // Required to override MSFT subscription policy controls that enforce disableLocalAuth; local auth needed for Fabric SAS connection
107107
})
108108

109-
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
109+
resource resourceGroupTags 'Microsoft.Resources/tags@2023-07-01' = {
110110
name: 'default'
111111
properties: {
112-
tags: union(reference(resourceGroup().id, '2021-04-01', 'Full').?tags ?? {}, allTags)
112+
tags: union(reference(resourceGroup().id, '2023-07-01', 'Full').?tags ?? {}, allTags)
113113
}
114114
}
115115

@@ -138,7 +138,7 @@ module eventHubCrossScope 'modules/event-hub.bicep' = if (useExistingEventHubNam
138138
}
139139

140140
// Create a new Event Hub Namespace with an Event Hub when not using an existing namespace.
141-
module eventHubNamespaceModule 'br/public:avm/res/event-hub/namespace:0.13.0' = if (!useExistingEventHubNamespace) {
141+
module eventHubNamespaceModule 'br/public:avm/res/event-hub/namespace:0.14.1' = if (!useExistingEventHubNamespace) {
142142
name: take('avm.res.event-hub.namespace.${eventHubNamespaceName}', 64)
143143
params: {
144144
name: eventHubNamespaceName

0 commit comments

Comments
 (0)