You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-operations/connect-to-cloud/howto-configure-fabric-endpoint.md
+125Lines changed: 125 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,48 @@ To configure a dataflow endpoint for Microsoft Fabric OneLake, we suggest using
81
81
lakehouseName: <EXAMPLE-LAKEHOUSE-NAME>
82
82
```
83
83
84
+
# [Bicep](#tab/bicep)
85
+
86
+
This Bicep template file from [Bicep File for Microsoft Fabric OneLake dataflow Tutorial](https://gist.github.com/david-emakenemi/289a167c8fa393d3a7dce274a6eb21eb) deploys the necessary resources for dataflows to Fabric OneLake.
87
+
88
+
1. Download the file to your local, and make sure to replace the values for `customLocationName`, `aioInstanceName`, `schemaRegistryName`, `opcuaSchemaName`, and `persistentVCName`.
89
+
90
+
1. Next, deploy the resources using the [az stack group](/azure/azure-resource-manager/bicep/deployment-stacks?tabs=azure-powershell) command in your terminal:
91
+
92
+
```azurecli
93
+
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
94
+
```
95
+
This endpoint is the destination for the dataflow that receives messages to Fabric OneLake.
Copy file name to clipboardExpand all lines: articles/iot-operations/connect-to-cloud/howto-configure-local-storage-endpoint.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,35 @@ spec:
59
59
60
60
The PersistentVolumeClaim (PVC) must be in the same namespace as the *DataflowEndpoint*.
61
61
62
+
# [Bicep](#tab/bicep)
63
+
64
+
This Bicep template file from [Bicep File for local storage dataflow Tutorial](https://gist.github.com/david-emakenemi/52377e32af1abd0efe41a5da27190a10) deploys the necessary resources for dataflows to local storage.
65
+
66
+
Download the file to your local, and make sure to replace the values for `customLocationName`, `aioInstanceName`, `schemaRegistryName`, `opcuaSchemaName`, and `persistentVCName`.
67
+
68
+
Next, deploy the resources using the [az stack group](/azure/azure-resource-manager/bicep/deployment-stacks?tabs=azure-powershell) command in your terminal:
69
+
70
+
```azurecli
71
+
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
72
+
```
73
+
This endpoint is the destination for the dataflow that receives messages to Local storage.
0 commit comments