@@ -56,37 +56,37 @@ To configure a dataflow endpoint for Azure Data Lake Storage Gen2, we suggest us
56
56
57
57
1. Create a bicep file ` deployment.bicep`. Replace the placeholder values like `<AIO_INSTANCE_NAME>` with your own.
58
58
59
- ` ` ` bicep
60
- param aioInstanceName string = '<AIO_INSTANCE_NAME>'
61
- param customLocationName string = '<CUSTOM_LOCATION_NAME>'
62
- param endpointName string = '<ENDPOINT_NAME>'
63
- param host string = 'https://<ACCOUNT>.blob.core.windows.net'
64
-
65
- resource aioInstance 'Microsoft.IoTOperations/instances@2024-08-15-preview' existing = {
66
- name: aioInstanceName
67
- }
68
- resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-preview' existing = {
69
- name: customLocationName
70
- }
71
- resource adlsGen2Endpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
72
- parent: aioInstance
73
- name: endpointName
74
- extendedLocation: {
75
- name: customLocation.id
76
- type: 'CustomLocation'
77
- }
78
- properties: {
79
- endpointType: 'DataLakeStorage'
80
- dataLakeStorageSettings: {
81
- host: host
82
- authentication: {
83
- method: 'SystemAssignedManagedIdentity'
84
- systemAssignedManagedIdentitySettings: {}
59
+ ` ` ` bicep
60
+ param aioInstanceName string = '<AIO_INSTANCE_NAME>'
61
+ param customLocationName string = '<CUSTOM_LOCATION_NAME>'
62
+ param endpointName string = '<ENDPOINT_NAME>'
63
+ param host string = 'https://<ACCOUNT>.blob.core.windows.net'
64
+
65
+ resource aioInstance 'Microsoft.IoTOperations/instances@2024-08-15-preview' existing = {
66
+ name: aioInstanceName
67
+ }
68
+ resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-preview' existing = {
69
+ name: customLocationName
70
+ }
71
+ resource adlsGen2Endpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
72
+ parent: aioInstance
73
+ name: endpointName
74
+ extendedLocation: {
75
+ name: customLocation.id
76
+ type: 'CustomLocation'
77
+ }
78
+ properties: {
79
+ endpointType: 'DataLakeStorage'
80
+ dataLakeStorageSettings: {
81
+ host: host
82
+ authentication: {
83
+ method: 'SystemAssignedManagedIdentity'
84
+ systemAssignedManagedIdentitySettings: {}
85
+ }
86
+ }
85
87
}
86
88
}
87
- }
88
- }
89
- ` ` `
89
+ ` ` `
90
90
91
91
1. Deploy via Azure CLI
92
92
0 commit comments