Skip to content

Commit be473e9

Browse files
Merge pull request #288246 from veyalla/patch-4
Fix casing issues
2 parents 59f5817 + 6a4b495 commit be473e9

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

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

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ To send data to Azure Data Lake Storage Gen2 in Azure IoT Operations Preview, yo
2222
- An instance of [Azure IoT Operations Preview](../deploy-iot-ops/howto-deploy-iot-operations.md)
2323
- A [configured dataflow profile](howto-configure-dataflow-profile.md)
2424
- A [Azure Data Lake Storage Gen2 account](../../storage/blobs/create-data-lake-storage-account.md)
25+
- A pre-created storage container in the storage account
2526

2627
## Create an Azure Data Lake Storage Gen2 dataflow endpoint
2728

@@ -42,8 +43,8 @@ To configure a dataflow endpoint for Azure Data Lake Storage Gen2, we suggest us
4243
name: adls
4344
spec:
4445
endpointType: DataLakeStorage
45-
datalakeStorageSettings:
46-
host: <account>.blob.core.windows.net
46+
dataLakeStorageSettings:
47+
host: https://<account>.blob.core.windows.net
4748
authentication:
4849
method: SystemAssignedManagedIdentity
4950
systemAssignedManagedIdentitySettings: {}
@@ -64,8 +65,8 @@ If you need to override the system-assigned managed identity audience, see the [
6465
name: adls
6566
spec:
6667
endpointType: DataLakeStorage
67-
datalakeStorageSettings:
68-
host: <account>.blob.core.windows.net
68+
dataLakeStorageSettings:
69+
host: https://<account>.blob.core.windows.net
6970
authentication:
7071
method: AccessToken
7172
accessTokenSettings:
@@ -95,6 +96,7 @@ spec:
9596
- operationType: Destination
9697
destinationSettings:
9798
endpointRef: adls
99+
# dataDestination should be the storage container name
98100
dataDestination: telemetryTable
99101
```
100102

@@ -120,7 +122,7 @@ Before creating the dataflow endpoint, assign a role to the managed identity tha
120122
In the *DataflowEndpoint* resource, specify the managed identity authentication method. In most cases, you don't need to specify other settings. Not specifying an audience creates a managed identity with the default audience scoped to your storage account.
121123

122124
```yaml
123-
datalakeStorageSettings:
125+
dataLakeStorageSettings:
124126
authentication:
125127
method: SystemAssignedManagedIdentity
126128
systemAssignedManagedIdentitySettings: {}
@@ -129,7 +131,7 @@ datalakeStorageSettings:
129131
If you need to override the system-assigned managed identity audience, you can specify the `audience` setting.
130132

131133
```yaml
132-
datalakeStorageSettings:
134+
dataLakeStorageSettings:
133135
authentication:
134136
method: SystemAssignedManagedIdentity
135137
systemAssignedManagedIdentitySettings:
@@ -161,7 +163,7 @@ kubectl create secret generic my-sas \
161163
Create the *DataflowEndpoint* resource with the secret reference.
162164

163165
```yaml
164-
datalakeStorageSettings:
166+
dataLakeStorageSettings:
165167
authentication:
166168
method: AccessToken
167169
accessTokenSettings:
@@ -173,7 +175,7 @@ datalakeStorageSettings:
173175
To use a user-assigned managed identity, specify the `UserAssignedManagedIdentity` authentication method and provide the `clientId` and `tenantId` of the managed identity.
174176

175177
```yaml
176-
datalakeStorageSettings:
178+
dataLakeStorageSettings:
177179
authentication:
178180
method: UserAssignedManagedIdentity
179181
userAssignedManagedIdentitySettings:
@@ -197,7 +199,7 @@ For example, to configure the maximum number of messages to 1000 and the maximum
197199
Set the values in the dataflow endpoint custom resource.
198200

199201
```yaml
200-
datalakeStorageSettings:
202+
dataLakeStorageSettings:
201203
batching:
202204
latencySeconds: 100
203205
maxMessages: 1000

0 commit comments

Comments
 (0)