Google Cloud Functions - How Do I Authenticate To Aws S3 Bucket?
I am trying to get a Google Cloud Function in Python 3.7 to take a file from Google Cloud Storage and upload it into AWS S3. In the command line, I would authenticate with awscli a
Solution 1:
You'll probably want to use the boto3
Python package instead, since the command-line AWS tools aren't available or installable for Cloud Functions. There's a number of ways to configure credentials as well.
Post a Comment for "Google Cloud Functions - How Do I Authenticate To Aws S3 Bucket?"