Skip to content

Commit 02e29d7

Browse files
authored
fix reference to inbound endpoint and remove invalid attribute (#140)
## Purpose <!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? --> Running the quickstart sample for Azure IoT Operations `AIO 2507 pre-release` doesn't work. * Version is not allowed on Microsoft.OpcUa inbound endpoints * Inbound endpoint reference corrected ## 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". --> ``` [x ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code <!-- Add steps to run the tests suite and/or manually test --> ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information <!-- Add any other helpful information that may be needed here. --> @dominicbetts f.y.i.
1 parent 6019371 commit 02e29d7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

samples/quickstarts/quickstart.bicep

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,9 @@ resource device 'Microsoft.DeviceRegistry/namespaces/devices@2025-07-01-preview'
7070
assigned: {}
7171
}
7272
inbound: {
73-
opcUaEndpointName: {
73+
[opcUaEndpointName]: {
7474
endpointType: 'Microsoft.OpcUa'
7575
address: 'opc.tcp://opcplc-000000:50000'
76-
version: '1.0'
7776
authentication: {
7877
method: 'Anonymous'
7978
}

0 commit comments

Comments
 (0)