From c4f0eefe1892c9bf922bcc04ca32280d6c5aece5 Mon Sep 17 00:00:00 2001 From: "buck.wallander" Date: Tue, 4 Aug 2020 14:28:52 -0700 Subject: [PATCH] Fixing issue with UTF-8 conversion in Python3 for GCS uploads --- plugins/modules/gcp_storage_object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/gcp_storage_object.py b/plugins/modules/gcp_storage_object.py index 266acf0..8187601 100644 --- a/plugins/modules/gcp_storage_object.py +++ b/plugins/modules/gcp_storage_object.py @@ -251,7 +251,7 @@ def upload_file(module, client, src, dest): try: bucket = client.get_bucket(module.params['bucket']) blob = Blob(dest, bucket) - with open(src, "r") as file_obj: + with open(src, "rb") as file_obj: blob.upload_from_file(file_obj) return blob_to_dict(blob) except google.cloud.exceptions.GoogleCloudError as e: