File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -421,10 +421,11 @@ spring:
421
421
client-id : <Managed_Identity_Client_ID_Databases>
422
422
managed-identity-enabled : true
423
423
storage :
424
- blob :
425
- credential :
426
- client-id : <Managed_Identity_Client_ID_Storage>
427
- managed-identity-enabled : true
424
+ blob :
425
+ endpoint : https://<contract-storage-account>.blob.core.windows.net
426
+ credential :
427
+ client-id : <Managed_Identity_Client_ID_Storage>
428
+ managed-identity-enabled : true
428
429
datasource :
429
430
url : jdbc:sqlserver://<azure-sql-hostname>.database.windows.net:1433;database=<database-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30;Authentication=ActiveDirectoryMSI;
430
431
` ` `
@@ -445,7 +446,7 @@ public class AzureStorageConfiguration {
445
446
446
447
@Bean("firstBlobServiceClient")
447
448
public BlobServiceClient firstBlobServiceClient(BlobServiceClientBuilder builder) {
448
- return builder.endpoint("https://<contract-storage-account>.blob.core.windows.net"). buildClient();
449
+ return builder.buildClient();
449
450
}
450
451
}
451
452
```
You can’t perform that action at this time.
0 commit comments