Skip to content

Commit f33bdd3

Browse files
Merge pull request #290814 from PatAltimore/patricka-api-fix
Fix listener API version
2 parents bf259d4 + dcdef21 commit f33bdd3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/iot-operations/manage-mqtt-broker/howto-configure-brokerlistener.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,20 @@ Be careful when modifying the default listener using Bicep. Don't change the exi
6969
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
7070
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
7171
72-
resource aioInstance 'Microsoft.IoTOperations/instances@2024-09-15-preview' existing = {
72+
resource aioInstance 'Microsoft.IoTOperations/instances@2024-11-01' existing = {
7373
name: aioInstanceName
7474
}
7575
7676
resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-preview' existing = {
7777
name: customLocationName
7878
}
7979
80-
resource defaultBroker 'Microsoft.IoTOperations/instances/brokers@2024-09-15-preview' existing = {
80+
resource defaultBroker 'Microsoft.IoTOperations/instances/brokers@2024-11-01' existing = {
8181
parent: aioInstance
8282
name: 'default'
8383
}
8484
85-
resource defaultListener 'Microsoft.IoTOperations/instances/brokers/listeners@2024-09-15-preview' = {
85+
resource defaultListener 'Microsoft.IoTOperations/instances/brokers/listeners@2024-11-01' = {
8686
parent: defaultBroker
8787
name: 'default'
8888
extendedLocation: {

0 commit comments

Comments
 (0)