From 1944176ac193a204319dd15c19a0042730ddb196 Mon Sep 17 00:00:00 2001 From: Matt Morrison Date: Wed, 14 Feb 2024 16:19:56 +1300 Subject: [PATCH] Update GCE storage service scope to FullControl --- util/pkg/vfs/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/pkg/vfs/context.go b/util/pkg/vfs/context.go index 599e439eaa..9d0331f1c5 100644 --- a/util/pkg/vfs/context.go +++ b/util/pkg/vfs/context.go @@ -418,7 +418,7 @@ func (c *VFSContext) getGCSClient(ctx context.Context) (*storage.Service, error) } // TODO: Should we fall back to read-only? - scope := storage.DevstorageReadWriteScope + scope := storage.DevstorageFullControlScope gcsClient, err := storage.NewService(ctx, option.WithScopes(scope)) if err != nil {