次の方法で共有


Azure Blob Storage を Service Connector と統合する

このページでは、Service Connector を使用した Azure Blob Storage のサポートされている認証の種類、クライアントの種類、サンプル コードを紹介します。 このページには、サービス接続を作成するときに取得する既定の環境変数の名前と値 (つまり、Spring Boot 構成) も示されています。

サポートされているコンピューティング サービス

Service Connector を使うと、次のコンピューティング サービスを Azure Blob Storage に接続できます。

  • Azure App Service
  • Azure Container Apps
  • Azure Functions
  • Azure Kubernetes Service (AKS)
  • Azure Spring Apps

サポートされている認証の種類とクライアントの種類

次の表は、サービス コネクタを使った Azure Blob Storage へのコンピューティング サービスの接続でサポートされている認証方法とクライアントの組み合わせを示したものです。 "はい" はその組み合わせがサポートされていることを示し、"いいえ" はサポートされていないことを示します。

クライアント タイプ システム割り当てマネージド ID ユーザー割り当てマネージド ID シークレット/接続文字列 サービス プリンシパル
.NET はい イエス イエス はい
Java はい イエス イエス はい
Java - Spring Boot はい イエス イエス はい
Node.js はい イエス イエス はい
Python はい イエス イエス はい
Go はい イエス イエス はい
なし 有効 イエス イエス はい

この表は、シークレットと接続文字列の方法のみをサポートする Java - Spring Boot クライアントの種類を除き、すべてのクライアントの種類と認証方法の組み合わせがサポートされていることを明確に示しています。 その他すべてのクライアントの種類で任意の認証方法を使用し、Service Connector を使って Azure Blob Storage に接続できます。

既定の環境変数名またはアプリケーション プロパティとサンプル コード

接続の認証の種類とクライアントの種類に基づき、次の表の接続詳細とサンプル コードを参照して、Azure Blob Storage にコンピューティング サービスを接続します。 Service Connector 環境変数の名前付け規則の詳細を参照してください。

システム割り当てマネージド ID

SpringBoot クライアント

システム割り当てマネージド ID を使う認証は、Spring Cloud Azure バージョン 4.0 以降でのみ使用できます。

既定の環境変数名 説明 値の例
spring.cloud.azure.storage.blob.credential.managed-identity-enabled マネージド ID を有効にするかどうか True
spring.cloud.azure.storage.blob.account-name ストレージ アカウントの名前 storage-account-name
spring.cloud.azure.storage.blob.endpoint Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/

その他のクライアント

既定の環境変数名 説明 例値
AZURE_STORAGEBLOB_RESOURCEENDPOINT Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/

サンプル コード

システム割り当てマネージド ID を使用して Azure Blob Storage に接続するには、次の手順とコードを参照してください。

azure-identity を使用し、マネージド ID またはサービス プリンシパル経由で認証できます。 Service Connector によって追加された環境変数から Azure Blob Storage エンドポイントを取得します。 次のコードを使用する場合は、使用する認証の種類のコード スニペットの部分をコメント解除します。

依存関係のインストール

dotnet add package Azure.Identity

マネージド ID またはサービス プリンシパルを使用して Blob Storage に接続するサンプル コードを次に示します。

using Azure.Identity;
using Azure.Storage.Blobs;

// get Blob endpoint
var blobEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT");

// Uncomment the following lines corresponding to the authentication type you want to use.
// system-assigned managed identity
// var credential = new DefaultAzureCredential();

// user-assigned managed identity
// var credential = new DefaultAzureCredential(
//     new DefaultAzureCredentialOptions
//     {
//         ManagedIdentityClientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
//     });

// service principal 
// var tenantId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_TENANTID");
// var clientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
// var clientSecret = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTSECRET");
// var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);

var blobServiceClient = new BlobServiceClient(
        new Uri(blobEndpoint),
        credential);

ユーザー割り当てマネージド ID

SpringBoot クライアント

ユーザー割り当てマネージド ID を使う認証は、Spring Cloud Azure バージョン 4.0 以降でのみ使用できます。

既定の環境変数名 説明 値の例
spring.cloud.azure.storage.blob.credential.managed-identity-enabled マネージド ID を有効にするかどうか True
spring.cloud.azure.storage.blob.account-name ストレージ アカウントの名前 storage-account-name
spring.cloud.azure.storage.blob.endpoint Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/
spring.cloud.azure.storage.blob.credential.client-id ユーザー割り当てマネージド ID のクライアント ID 00001111-aaaa-2222-bbbb-3333cccc4444

その他のクライアント

既定の環境変数名 説明 例値
AZURE_STORAGEBLOB_RESOURCEENDPOINT Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/
AZURE_STORAGEBLOB_CLIENTID クライアント ID <client-ID>

サンプル コード

ユーザー割り当てマネージド ID を使用して Azure Blob Storage に接続するには、次の手順とコードを参照してください。

azure-identity を使用し、マネージド ID またはサービス プリンシパル経由で認証できます。 Service Connector によって追加された環境変数から Azure Blob Storage エンドポイントを取得します。 次のコードを使用する場合は、使用する認証の種類のコード スニペットの部分をコメント解除します。

依存関係のインストール

dotnet add package Azure.Identity

マネージド ID またはサービス プリンシパルを使用して Blob Storage に接続するサンプル コードを次に示します。

using Azure.Identity;
using Azure.Storage.Blobs;

// get Blob endpoint
var blobEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT");

// Uncomment the following lines corresponding to the authentication type you want to use.
// system-assigned managed identity
// var credential = new DefaultAzureCredential();

// user-assigned managed identity
// var credential = new DefaultAzureCredential(
//     new DefaultAzureCredentialOptions
//     {
//         ManagedIdentityClientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
//     });

// service principal 
// var tenantId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_TENANTID");
// var clientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
// var clientSecret = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTSECRET");
// var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);

var blobServiceClient = new BlobServiceClient(
        new Uri(blobEndpoint),
        credential);

接続文字列

警告

Microsoft では、使用可能な最も安全な認証フローを使用することをお勧めします。 この手順で説明されている認証フローでは、アプリケーションで非常に高い信頼度が要求されるため、他のフローには存在しないリスクが伴います。 このフローは、マネージド ID など、より安全なフローが実行可能ではない場合にのみ使用してください。

SpringBoot クライアント

Application properties 説明 例値
azure.storage.account-name Blob Storage アカウント名 <storage-account-name>
azure.storage.account-key Blob Storage アカウント キー <account-key>
azure.storage.blob-endpoint Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/
spring.cloud.azure.storage.blob.account-name Spring Cloud Azure バージョン 4.0 以降の Blob Storage アカウント名 <storage-account-name>
spring.cloud.azure.storage.blob.account-key Spring Cloud Azure バージョン 4.0 以降の Blob Storage アカウント キー <account-key>
spring.cloud.azure.storage.blob.endpoint Spring Cloud Azure バージョン 4.0 以降の Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/

その他のクライアント

既定の環境変数名 説明 例値
AZURE_STORAGEBLOB_CONNECTIONSTRING Blob Storage の接続文字列 DefaultEndpointsProtocol=https;AccountName=<account name>;AccountKey=<account-key>;EndpointSuffix=core.windows.net

サンプル コード

接続文字列を使用して Azure Blob Storage に接続するには、次の手順とコードを参照してください。

Service Connector によって追加された環境変数から Azure Blob Storage 接続文字列を取得します。

依存関係のインストール

dotnet add package Azure.Storage.Blob
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using System; 

// get Blob connection string
var connectionString = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CONNECTIONSTRING");

// Create a BlobServiceClient object 
var blobServiceClient = new BlobServiceClient(connectionString);

サービス プリンシパル

SpringBoot クライアント

サービス プリンシパルを使う認証は、Spring Cloud Azure バージョン 4.0 以降でのみ使用できます。

既定の環境変数名 説明 値の例
spring.cloud.azure.storage.blob.account-name ストレージ アカウントの名前 storage-account-name
spring.cloud.azure.storage.blob.endpoint Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/
spring.cloud.azure.storage.blob.credential.client-id サービス プリンシパルのクライアント ID 00001111-aaaa-2222-bbbb-3333cccc4444
spring.cloud.azure.storage.blob.credential.client-secret サービス プリンシパル認証を実行するためのクライアント シークレット Aa1Bb~2Cc3.-Dd4Ee5Ff6Gg7Hh8Ii9_Jj0Kk1Ll2

その他のクライアント

既定の環境変数名 説明 例値
AZURE_STORAGEBLOB_RESOURCEENDPOINT Blob Storage エンドポイント https://<storage-account-name>.blob.core.windows.net/
AZURE_STORAGEBLOB_CLIENTID クライアント ID <client-ID>
AZURE_STORAGEBLOB_CLIENTSECRET クライアント シークレット <client-secret>
AZURE_STORAGEBLOB_TENANTID テナント ID <tenant-ID>

サンプル コード

サービス プリンシパルを使用して Azure Blob Storage に接続するには、次の手順とコードを参照してください。

azure-identity を使用し、マネージド ID またはサービス プリンシパル経由で認証できます。 Service Connector によって追加された環境変数から Azure Blob Storage エンドポイントを取得します。 次のコードを使用する場合は、使用する認証の種類のコード スニペットの部分をコメント解除します。

依存関係のインストール

dotnet add package Azure.Identity

マネージド ID またはサービス プリンシパルを使用して Blob Storage に接続するサンプル コードを次に示します。

using Azure.Identity;
using Azure.Storage.Blobs;

// get Blob endpoint
var blobEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT");

// Uncomment the following lines corresponding to the authentication type you want to use.
// system-assigned managed identity
// var credential = new DefaultAzureCredential();

// user-assigned managed identity
// var credential = new DefaultAzureCredential(
//     new DefaultAzureCredentialOptions
//     {
//         ManagedIdentityClientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
//     });

// service principal 
// var tenantId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_TENANTID");
// var clientId = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTID");
// var clientSecret = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_CLIENTSECRET");
// var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);

var blobServiceClient = new BlobServiceClient(
        new Uri(blobEndpoint),
        credential);

次のステップ

Service Connector の詳細については、チュートリアルに従ってください。