diff --git a/experimenter/experimenter/settings.py b/experimenter/experimenter/settings.py index 5385dc398c..6b0c963224 100644 --- a/experimenter/experimenter/settings.py +++ b/experimenter/experimenter/settings.py @@ -506,11 +506,14 @@ STORAGES = { "default": { "BACKEND": UPLOADS_FILE_STORAGE, - "OPTIONS": { - "bucket_name": UPLOADS_GS_BUCKET_NAME, - } - if UPLOADS_GS_BUCKET_NAME - else {}, + "OPTIONS": ( + { + "bucket_name": UPLOADS_GS_BUCKET_NAME, + "querystring_auth": False, + } + if UPLOADS_GS_BUCKET_NAME + else {} + ), }, "staticfiles": { "BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage",