Skip to content

Commit

Permalink
allow to authenticate to Azure Storage using SAS tokens
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Dzibela <[email protected]>
  • Loading branch information
dzibma committed Jan 16, 2024
1 parent fb21829 commit ee85af0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions content/docs/2.13/scalers/azure-storage-blob.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ You can authenticate by using pod identity or connection string authentication.

- `connection` - Connection string for Azure Storage Account.

The following formats are supported.

- **Shared Key authentication** - `DefaultEndpointsProtocol=https;AccountName=<accountName>;AccountKey=<accountKey>;EndpointSuffix=<endpointSuffix>`
- **Shared access signature** (SAS) - `BlobEndpoint=<blobEndpoint>;SharedAccessSignature=<sasToken>`

**Pod Identity Authentication**

[Azure AD Pod Identity](https://docs.microsoft.com/en-us/azure/aks/use-azure-ad-pod-identity) or [Azure AD Workload Identity](https://azure.github.io/azure-workload-identity/docs/) providers can be used.
Expand Down
5 changes: 5 additions & 0 deletions content/docs/2.13/scalers/azure-storage-queue.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ You can authenticate by using pod identity or connection string authentication.

- `connection` - Connection string for Azure Storage Account.

The following formats are supported.

- **Shared Key authentication** - `DefaultEndpointsProtocol=https;AccountName=<accountName>;AccountKey=<accountKey>;EndpointSuffix=<endpointSuffix>`
- **Shared access signature** (SAS) - `QueueEndpoint=<queueEndpoint>;SharedAccessSignature=<sasToken>`

**Pod identity based authentication:**

[Azure AD Pod Identity](https://docs.microsoft.com/en-us/azure/aks/use-azure-ad-pod-identity) or [Azure AD Workload Identity](https://azure.github.io/azure-workload-identity/docs/) providers can be used.
Expand Down

0 comments on commit ee85af0

Please sign in to comment.