Skip to content

Commit f318844

Browse files
updated file based on suggestions
1 parent daaa6e5 commit f318844

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/iot-operations/connect-to-cloud/howto-create-dataflow.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -591,15 +591,16 @@ Specify the **Output** schema when you add the destination dataflow endpoint.
591591

592592
# [Bicep](#tab/bicep)
593593

594-
When the dataflow resource is created, it includes a schemaRef value that points to the generated schema stored in the schema registry. It can be referenced in transformations which creates a new schema in Delta format.
594+
When the dataflow resource is created, it includes a `schemaRef` value that points to the generated schema stored in the schema registry. It can be referenced in transformations which creates a new schema in Delta format.
595+
This [Bicep File to create Dataflow](https://github.com/Azure-Samples/explore-iot-operations/blob/main/samples/quickstarts/dataflow.bicep) provides a streamlined approach to provisioning the dataflow with schema integration.
595596

596597
```bicep
597598
{
598599
operationType: 'BuiltInTransformation'
599600
builtInTransformationSettings: {
600601
// ..
601602
schemaRef: 'aio-sr://${opcuaSchemaName}:${opcuaSchemaVer}'
602-
serializationFormat: 'Parquet' // can also be 'Delta'
603+
serializationFormat: 'Parquet'
603604
}
604605
}
605606
```
@@ -793,7 +794,7 @@ Select the dataflow you want to export and select **Export** from the toolbar.
793794

794795
# [Bicep](#tab/bicep)
795796

796-
TODO.
797+
Bicep is infrastructure as code, so no export is required. This [Bicep File to create Dataflow](https://github.com/Azure-Samples/explore-iot-operations/blob/main/samples/quickstarts/dataflow.bicep) provides a template to quickly set up and configure dataflows.
797798

798799
# [Kubernetes](#tab/kubernetes)
799800

0 commit comments

Comments
 (0)