Skip to content

Commit fc165ec

Browse files
fixing space issue
1 parent 709a857 commit fc165ec

6 files changed

+137
-136
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To configure a dataflow endpoint for Azure Data Lake Storage Gen2, we suggest us
5656
5757
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
5858

59-
```bicep
59+
```bicep
6060
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
6161
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
6262
param endpointName string = '<ENDPOINT_NAME>'
@@ -86,7 +86,7 @@ To configure a dataflow endpoint for Azure Data Lake Storage Gen2, we suggest us
8686
}
8787
}
8888
}
89-
```
89+
```
9090

9191
1. Deploy via Azure CLI
9292

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

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -80,33 +80,34 @@ spec:
8080

8181
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
8282

83-
```bicep
84-
// ADX Endpoint
85-
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
86-
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
87-
param endpointName string = '<ENDPOINT_NAME>'
88-
param hostName string = 'https://<cluster>.<region>.kusto.windows.net'
89-
param databaseName string = '<DATABASE_NAME>'
90-
91-
resource adxEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
92-
parent: aioInstance
93-
name: endpointName
94-
extendedLocation: {
95-
name: customLocationName
96-
type: 'CustomLocation'
97-
}
98-
properties: {
99-
endpointType: 'DataExplorer'
100-
dataExplorerSettings: {
101-
authentication: {
102-
method: 'SystemAssignedManagedIdentity'
103-
systemAssignedManagedIdentitySettings: {}
104-
}
105-
host: hostName
106-
database: databaseName
107-
}
108-
}
109-
}
83+
```bicep
84+
// ADX Endpoint
85+
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
86+
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
87+
param endpointName string = '<ENDPOINT_NAME>'
88+
param hostName string = 'https://<cluster>.<region>.kusto.windows.net'
89+
param databaseName string = '<DATABASE_NAME>'
90+
91+
resource adxEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
92+
parent: aioInstance
93+
name: endpointName
94+
extendedLocation: {
95+
name: customLocationName
96+
type: 'CustomLocation'
97+
}
98+
properties: {
99+
endpointType: 'DataExplorer'
100+
dataExplorerSettings: {
101+
authentication: {
102+
method: 'SystemAssignedManagedIdentity'
103+
systemAssignedManagedIdentitySettings: {}
104+
}
105+
host: hostName
106+
database: databaseName
107+
}
108+
}
109+
}
110+
```
110111
111112
1. Deploy via Azure CLI
112113

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

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -66,38 +66,38 @@ To configure a dataflow endpoint for Microsoft Fabric OneLake, we suggest using
6666
6767
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
6868

69-
```bicep
70-
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
71-
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
72-
param endpointName string = '<ENDPOINT_NAME>'
73-
param lakehouseName string = '<EXAMPLE-LAKEHOUSE-NAME>'
74-
param workspaceName string = '<EXAMPLE-WORKSPACE-NAME>'
75-
76-
resource oneLakeEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
77-
parent: aioInstance
78-
name: endpointName
79-
extendedLocation: {
80-
name: customLocationName
81-
type: 'CustomLocation'
82-
}
83-
properties: {
84-
endpointType: 'FabricOneLake'
85-
fabricOneLakeSettings: {
86-
authentication: {
87-
method: 'SystemAssignedManagedIdentity'
88-
systemAssignedManagedIdentitySettings: {}
89-
}
90-
oneLakePathType: 'Tables'
91-
host: 'https://onelake.dfs.fabric.microsoft.com'
92-
names: {
93-
lakehouseName: lakehouseName
94-
workspaceName: workspaceName
95-
}
96-
...
97-
}
98-
}
99-
}
100-
```
69+
```bicep
70+
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
71+
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
72+
param endpointName string = '<ENDPOINT_NAME>'
73+
param lakehouseName string = '<EXAMPLE-LAKEHOUSE-NAME>'
74+
param workspaceName string = '<EXAMPLE-WORKSPACE-NAME>'
75+
76+
resource oneLakeEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
77+
parent: aioInstance
78+
name: endpointName
79+
extendedLocation: {
80+
name: customLocationName
81+
type: 'CustomLocation'
82+
}
83+
properties: {
84+
endpointType: 'FabricOneLake'
85+
fabricOneLakeSettings: {
86+
authentication: {
87+
method: 'SystemAssignedManagedIdentity'
88+
systemAssignedManagedIdentitySettings: {}
89+
}
90+
oneLakePathType: 'Tables'
91+
host: 'https://onelake.dfs.fabric.microsoft.com'
92+
names: {
93+
lakehouseName: lakehouseName
94+
workspaceName: workspaceName
95+
}
96+
...
97+
}
98+
}
99+
}
100+
```
101101

102102
1. Deploy via Azure CLI
103103

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

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -98,32 +98,32 @@ spec:
9898

9999
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
100100

101-
```bicep
102-
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
103-
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
104-
param endpointName string = '<ENDPOINT_NAME>'
105-
param schemaRegistryName string = '<SCHEMA_REGISTRY_NAME>'
106-
param hostName string = '<HOST>.servicebus.windows.net:9093'
107-
108-
resource kafkaEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
109-
parent: aioInstanceName
110-
name: endpointName
111-
extendedLocation: {
112-
name: customLocationName
113-
type: 'CustomLocation'
114-
}
115-
properties: {
116-
endpointType: 'Kafka'
117-
kafkaSettings: {
118-
host: hostName
119-
authentication: {
120-
method: 'SystemAssignedManagedIdentity'
121-
systemAssignedManagedIdentitySettings: {}
122-
}
123-
}
124-
}
125-
}
126-
```
101+
```bicep
102+
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
103+
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
104+
param endpointName string = '<ENDPOINT_NAME>'
105+
param schemaRegistryName string = '<SCHEMA_REGISTRY_NAME>'
106+
param hostName string = '<HOST>.servicebus.windows.net:9093'
107+
108+
resource kafkaEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
109+
parent: aioInstanceName
110+
name: endpointName
111+
extendedLocation: {
112+
name: customLocationName
113+
type: 'CustomLocation'
114+
}
115+
properties: {
116+
endpointType: 'Kafka'
117+
kafkaSettings: {
118+
host: hostName
119+
authentication: {
120+
method: 'SystemAssignedManagedIdentity'
121+
systemAssignedManagedIdentitySettings: {}
122+
}
123+
}
124+
}
125+
}
126+
```
127127

128128
1. Deploy via Azure CLI
129129

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

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,27 @@ The PersistentVolumeClaim (PVC) must be in the same namespace as the *DataflowEn
4747
4848
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
4949

50-
```bicep
51-
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
52-
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
53-
param endpointName string = '<ENDPOINT_NAME>'
54-
param persistentVCName string = '<PERSISTENT_VC_NAME>'
55-
56-
resource localStorageDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
57-
parent: aioInstance
58-
name: endpointName
59-
extendedLocation: {
60-
name: customLocationName
61-
type: 'CustomLocation'
62-
}
63-
properties: {
64-
endpointType: 'LocalStorage'
65-
localStorageSettings: {
66-
persistentVolumeClaimRef: persistentVCName
67-
}
68-
}
69-
}
70-
```
50+
```bicep
51+
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
52+
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
53+
param endpointName string = '<ENDPOINT_NAME>'
54+
param persistentVCName string = '<PERSISTENT_VC_NAME>'
55+
56+
resource localStorageDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
57+
parent: aioInstance
58+
name: endpointName
59+
extendedLocation: {
60+
name: customLocationName
61+
type: 'CustomLocation'
62+
}
63+
properties: {
64+
endpointType: 'LocalStorage'
65+
localStorageSettings: {
66+
persistentVolumeClaimRef: persistentVCName
67+
}
68+
}
69+
}
70+
```
7171

7272
1. Deploy via Azure CLI
7373

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

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -186,34 +186,34 @@ spec:
186186

187187
1. Create a bicep file `deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
188188

189-
```bicep
190-
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
191-
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
192-
param endpointName string = '<ENDPOINT_NAME>'
193-
param eventGridHostName string = '<EVENTGRID_HOSTNAME>'
194-
195-
resource remoteMqttBrokerDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
196-
parent: aioInstance
197-
name: endpointName
198-
extendedLocation: {
199-
name: customLocationName
200-
type: 'CustomLocation'
201-
}
202-
properties: {
203-
endpointType: 'Mqtt'
204-
mqttSettings: {
205-
authentication: {
206-
method: 'SystemAssignedManagedIdentity'
207-
systemAssignedManagedIdentitySettings: {}
208-
}
209-
host: eventGridHostName
210-
tls: {
211-
mode: 'Enabled'
212-
}
213-
}
214-
}
215-
}
216-
```
189+
```bicep
190+
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
191+
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
192+
param endpointName string = '<ENDPOINT_NAME>'
193+
param eventGridHostName string = '<EVENTGRID_HOSTNAME>'
194+
195+
resource remoteMqttBrokerDataflowEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
196+
parent: aioInstance
197+
name: endpointName
198+
extendedLocation: {
199+
name: customLocationName
200+
type: 'CustomLocation'
201+
}
202+
properties: {
203+
endpointType: 'Mqtt'
204+
mqttSettings: {
205+
authentication: {
206+
method: 'SystemAssignedManagedIdentity'
207+
systemAssignedManagedIdentitySettings: {}
208+
}
209+
host: eventGridHostName
210+
tls: {
211+
mode: 'Enabled'
212+
}
213+
}
214+
}
215+
}
216+
```
217217

218218
1. Deploy via Azure CLI
219219

0 commit comments

Comments
 (0)