Skip to content

Commit 137764d

Browse files
authored
Add destination to asset (#138)
## Purpose Add missing destination config to asset ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [x] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [x] Documentation content changes [ ] Other... Please describe: ```
1 parent 51c5aa1 commit 137764d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

samples/quickstarts/quickstart.bicep

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ resource asset 'Microsoft.DeviceRegistry/namespaces/assets@2025-07-01-preview' =
131131
dataPointConfiguration: '{"samplingInterval":500,"queueSize":1}'
132132
}
133133
]
134+
destinations: [
135+
{
136+
target: 'Mqtt'
137+
configuration: {
138+
topic: 'azure-iot-operations/data/oven'
139+
retain: 'Keep'
140+
qos: 'Qos1'
141+
}
142+
}
143+
]
134144
}
135145
]
136146

0 commit comments

Comments
 (0)