From 9a36f53ad033988b4ba6f06abc7ac4ab37a3cfb9 Mon Sep 17 00:00:00 2001 From: tvalentyn Date: Wed, 28 Sep 2022 16:15:44 -0700 Subject: [PATCH] Update auth.py Include the GCP scope when creating a scoped credential token. --- sdks/python/apache_beam/internal/gcp/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdks/python/apache_beam/internal/gcp/auth.py b/sdks/python/apache_beam/internal/gcp/auth.py index 27a3c40cd4b32..57f210ac98c99 100644 --- a/sdks/python/apache_beam/internal/gcp/auth.py +++ b/sdks/python/apache_beam/internal/gcp/auth.py @@ -45,6 +45,7 @@ _LOGGER = logging.getLogger(__name__) CLIENT_SCOPES = [ + 'https://www.googleapis.com/auth/cloud-platform', 'https://www.googleapis.com/auth/bigquery', 'https://www.googleapis.com/auth/cloud-platform', 'https://www.googleapis.com/auth/devstorage.full_control',