Skip to content

Commit bb3c217

Browse files
committed
Merge branch 'patricka-dataflow-mq-release-aio-m2' of https://github.com/PatAltimore/azure-docs-pr into patricka-dataflow-mq-release-aio-m2
2 parents 1302966 + 372e67f commit bb3c217

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-fabric-endpoint.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ This Bicep template file from [Bicep File for Microsoft Fabric OneLake dataflow
9292
```azurecli
9393
az stack group create --name MyDeploymentStack --resource-group $RESOURCE_GROUP --template-file /workspaces/explore-iot-operations/<filename>.bicep --action-on-unmanage 'deleteResources' --deny-settings-mode 'none' --yes
9494
```
95+
9596
This endpoint is the destination for the dataflow that receives messages to Fabric OneLake.
9697

9798
```bicep
@@ -247,6 +248,12 @@ resource dataflow_onelake 'Microsoft.IoTOperations/instances/dataflowProfiles/da
247248
}
248249
```
249250

251+
The `BuiltInTransformation` in this Bicep file transforms the data flowing through the dataflow pipeline. It applies a pass-through operation, mapping all input fields `(inputs: array('*'))` directly to the output `(output: '*')`, without altering the data.
252+
253+
It also references the defined OPC-UA schema to ensure the data is structured according to the OPC UA protocol. The transformation then serializes the data in Delta format (or Parquet if specified).
254+
255+
This step ensures that the data adheres to the required schema and format before being sent to the destination.
256+
250257
---
251258

252259
For more information about dataflow destination settings, see [Create a dataflow](howto-create-dataflow.md).
@@ -298,10 +305,10 @@ fabricOneLakeSettings:
298305
fabricOneLakeSettings: {
299306
authentication: {
300307
method: 'SystemAssignedManagedIdentity'
301-
systemAssignedManagedIdentitySettings: {}
308+
systemAssignedManagedIdentitySettings: {
309+
audience: 'https://contoso.onelake.dfs.fabric.microsoft.com'
310+
}
302311
}
303-
oneLakePathType: 'Tables'
304-
host: 'https://msit-onelake.dfs.fabric.microsoft.com'
305312
...
306313
}
307314
```
@@ -378,6 +385,10 @@ fabricOneLakeSettings:
378385

379386
# [Bicep](#tab/bicep)
380387

388+
The bicep file has the values in the dataflow endpoint resource.
389+
390+
<!-- TODO Add a way for users to override the file with values using the az stack group command >
391+
381392
```bicep
382393
batching: {
383394
latencySeconds: 5

0 commit comments

Comments
 (0)