Skip to content

Commit 600151c

Browse files
committed
fix comments
1 parent 872ec07 commit 600151c

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

articles/service-connector/how-to-integrate-storage-blob.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ Reference the connection details and sample code in the following tables, accord
4343

4444
### System-assigned managed identity
4545

46-
#### SpringBoot client type
46+
#### SpringBoot client
4747

48-
Using a system-assigned managed identity as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
48+
Authenticating with a system-assigned managed identity is only available for Spring Cloud Azure version 4.0 or higher.
4949

5050
| Default environment variable name | Description | Example value |
5151
|---------------------------------------------------------------------|--------------------------------------|---------------------------------------------------------|
5252
| spring.cloud.azure.storage.blob.credential.managed-identity-enabled | Whether to enable managed identity | `True` |
5353
| spring.cloud.azure.storage.blob.account-name | Name for the storage account | `storage-account-name` |
5454
| spring.cloud.azure.storage.blob.endpoint | Blob Storage endpoint | `https://<storage-account-name>.blob.core.windows.net/` |
5555

56-
#### Other client types
56+
#### Other clients
5757

5858
| Default environment variable name | Description | Example value |
5959
| ---------------------------------- | --------------------- | --------------------------------------------------------- |
@@ -66,9 +66,9 @@ Refer to the steps and code below to connect to Azure Blob Storage using a syste
6666

6767
### User-assigned managed identity
6868

69-
#### SpringBoot client type
69+
#### SpringBoot client
7070

71-
Using a user-assigned managed identity as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
71+
Authenticating with a user-assigned managed identity is only available for Spring Cloud Azure version 4.0 or higher.
7272

7373
| Default environment variable name | Description | Example value |
7474
|---------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------------|
@@ -77,7 +77,7 @@ Using a user-assigned managed identity as the authentication type is only availa
7777
| spring.cloud.azure.storage.blob.endpoint | Blob Storage endpoint | `https://<storage-account-name>.blob.core.windows.net/` |
7878
| spring.cloud.azure.storage.blob.credential.client-id | Client ID of the user-assigned managed identity | `00001111-aaaa-2222-bbbb-3333cccc4444` |
7979

80-
#### Other client types
80+
#### Other clients
8181

8282
| Default environment variable name | Description | Example value |
8383
| ---------------------------------- | --------------------- | --------------------------------------------------------- |
@@ -91,7 +91,7 @@ Refer to the steps and code below to connect to Azure Blob Storage using a user-
9191

9292
### Connection string
9393

94-
#### SpringBoot client type
94+
#### SpringBoot client
9595

9696
| Application properties | Description | Example value |
9797
| --------------------------- | ------------------------------ | --------------------------------------------------------- |
@@ -102,7 +102,7 @@ Refer to the steps and code below to connect to Azure Blob Storage using a user-
102102
| spring.cloud.azure.storage.blob.account-key | Your Blob Storage account key for Spring Cloud Azure version 4.0 or above | `<account-key>` |
103103
| spring.cloud.azure.storage.blob.endpoint | Your Blob Storage endpoint for Spring Cloud Azure version 4.0 or above | `https://<storage-account-name>.blob.core.windows.net/` |
104104

105-
#### Other client types
105+
#### Other clients
106106
| Default environment variable name | Description | Example value |
107107
|------------------------------------|--------------------------------|---------------------------------------------------------------------------------------------------------------------|
108108
| AZURE_STORAGEBLOB_CONNECTIONSTRING | Blob Storage connection string | `DefaultEndpointsProtocol=https;AccountName=<account name>;AccountKey=<account-key>;EndpointSuffix=core.windows.net` |
@@ -114,9 +114,9 @@ Refer to the steps and code below to connect to Azure Blob Storage using a conne
114114

115115
### Service principal
116116

117-
#### SpringBoot client type
117+
#### SpringBoot client
118118

119-
Using a service principal as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
119+
Authenticating with a service principal is only available for Spring Cloud Azure version 4.0 or higher.
120120

121121
| Default environment variable name | Description | Example value |
122122
|---------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------------|
@@ -125,7 +125,7 @@ Using a service principal as the authentication type is only available for Sprin
125125
| spring.cloud.azure.storage.blob.credential.client-id | Client ID of the service principal | `00001111-aaaa-2222-bbbb-3333cccc4444` |
126126
| spring.cloud.azure.storage.blob.credential.client-secret | Client secret to perform service principal authentication | `Aa1Bb~2Cc3.-Dd4Ee5Ff6Gg7Hh8Ii9_Jj0Kk1Ll2` |
127127

128-
#### Other client types
128+
#### Other clients
129129

130130
| Default environment variable name | Description | Example value |
131131
| ---------------------------------- | --------------------- | --------------------------------------------------------- |

articles/service-connector/how-to-integrate-storage-queue.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ Use the connection details below to connect compute services to Queue Storage. F
4242

4343
### System-assigned managed identity
4444

45-
#### SpringBoot client type
45+
#### SpringBoot client
4646

47-
Using a system-assigned managed identity as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
47+
Authenticating with a system-assigned managed identity is only available for Spring Cloud Azure version 4.0 or higher.
4848

4949
| Default environment variable name | Description | Example value |
5050
|---------------------------------------------------------------------|--------------------------------------|---------------------------------------------------------|
5151
| spring.cloud.azure.storage.queue.credential.managed-identity-enabled | Whether to enable managed identity | `True` |
5252
| spring.cloud.azure.storage.queue.account-name | Name for the storage account | `storage-account-name` |
5353
| spring.cloud.azure.storage.queue.endpoint | Queue Storage endpoint | `https://<storage-account-name>.queue.core.windows.net/` |
5454

55-
#### Other client types
55+
#### Other clients
5656

5757
| Default environment variable name | Description | Example value |
5858
| ----------------------------------- | ---------------------- | ---------------------------------------------------------- |
@@ -65,9 +65,9 @@ Refer to the steps and code below to connect to Azure Queue Storage using a syst
6565

6666
### User-assigned managed identity
6767

68-
#### SpringBoot client type
68+
#### SpringBoot client
6969

70-
Using a user-assigned managed identity as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
70+
Authenticating with a user-assigned managed identity is only available for Spring Cloud Azure version 4.0 or higher.
7171

7272
| Default environment variable name | Description | Example value |
7373
|---------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------------|
@@ -76,7 +76,7 @@ Using a user-assigned managed identity as the authentication type is only availa
7676
| spring.cloud.azure.storage.queue.endpoint | Queue Storage endpoint | `https://<storage-account-name>.queue.core.windows.net/` |
7777
| spring.cloud.azure.storage.queue.credential.client-id | Client ID of the user-assigned managed identity | `00001111-aaaa-2222-bbbb-3333cccc4444` |
7878

79-
#### Other client types
79+
#### Other clients
8080

8181

8282
| Default environment variable name | Description | Example value |
@@ -90,7 +90,7 @@ Refer to the steps and code below to connect to Azure Queue Storage using a user
9090

9191
### Connection string
9292

93-
#### SpringBoot client type
93+
#### SpringBoot client
9494

9595
| Application properties | Description | Example value |
9696
|----------------------------------------|----------------------------|--------------------------|
@@ -100,7 +100,7 @@ Refer to the steps and code below to connect to Azure Queue Storage using a user
100100
| spring.cloud.azure.storage.queue.account-key | Queue storage account key for Spring Cloud Azure version above 4.0 | `<account-key>` |
101101
| spring.cloud.azure.storage.queue.endpoint | Queue storage endpoint for Spring Cloud Azure version above 4.0 | `https://<storage-account-name>.queue.core.windows.net/` |
102102

103-
#### Other client types
103+
#### Other clients
104104

105105
| Default environment variable name | Description | Example value |
106106
|-------------------------------------|---------------------------------|----------------------------------------------------------------------------------------------------------------------|
@@ -113,9 +113,9 @@ Refer to the steps and code below to connect to Azure Queue Storage using a conn
113113

114114
### Service principal
115115

116-
#### SpringBoot client type
116+
#### SpringBoot client
117117

118-
Using a service principal as the authentication type is only available for Spring Cloud Azure version 4.0 or higher.
118+
Authenticating with a service principal is only available for Spring Cloud Azure version 4.0 or higher.
119119

120120
| Default environment variable name | Description | Example value |
121121
|---------------------------------------------------------------------|--------------------------------------------------|---------------------------------------------------------|
@@ -124,7 +124,7 @@ Using a service principal as the authentication type is only available for Sprin
124124
| spring.cloud.azure.storage.queue.credential.client-id | Client ID of the service principal | `00001111-aaaa-2222-bbbb-3333cccc4444` |
125125
| spring.cloud.azure.storage.queue.credential.client-secret | Client secret to perform service principal authentication | `Aa1Bb~2Cc3.-Dd4Ee5Ff6Gg7Hh8Ii9_Jj0Kk1Ll2` |
126126

127-
#### Other client types
127+
#### Other clients
128128

129129
| Default environment variable name | Description | Example value |
130130
| ----------------------------------- | ---------------------- | ---------------------------------------------------------- |

0 commit comments

Comments
 (0)