Skip to content

Commit b01b2ea

Browse files
committed
fix docs
Signed-off-by: Somtochi Onyekwere <[email protected]>
1 parent d0bbe2c commit b01b2ea

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/spec/v1beta2/buckets.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,11 +541,13 @@ If the same key is present in the both of them, the value in the `sasKey` takes
541541
continue to access Azure Storage. It is allowed to use an account-level or container-level SAS token.
542542

543543
The minimum permissions for an account-level SAS token are:
544+
544545
- Allowed services: `Blob`
545546
- Allowed resource types: `Container`, `Object`
546547
- Allowed permissions: `Read`, `List`
547548

548-
The minimum permissions for a container-level SAS token are:
549+
The minimum permissions for a container-level SAS token are:
550+
549551
- Allowed permissions: `Read`, `List`
550552

551553
Refer to the [Azure documentation](https://learn.microsoft.com/en-us/rest/api/storageservices/create-account-sas#blob-service) for a full overview on permissions.

pkg/azure/blob_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ func TestBlobClientContainerSASKey_BucketExists(t *testing.T) {
281281
g.Expect(err).ToNot(HaveOccurred())
282282
g.Expect(ok).To(BeTrue())
283283

284-
// BucketExists returns an error if the bucket doesn't exist with container level SAS
284+
// BucketExists returns an erroruu if the bucket doesn't exist with container level SAS
285285
// since the error code is AuthenticationFailed.
286286
ok, err = sasKeyClient.BucketExists(ctx, "non-existent")
287287
g.Expect(err).To(HaveOccurred())

0 commit comments

Comments
 (0)