Reputation: 3
data source is from SaaS Server's API endpoints, aim to use python to move data into AWS S3 Bucket(Python's Boto3 lib) API is assigned via authorized Username/password combination and unique api-key. then every time initially call API need get Token for further info fetch.
have 2 question:
I am new to Python programing world, you all feel free to comment to share any user-case. Much appreciate !!
I searched and read this show-case
[saving-from-api-to-s3-bucket/74648533] saving from api to s3 bucket
and "how-to-write-a-file-or-data-to-an-s3-object-using-boto3" How to write a file or data to an S3 object using boto3
Upvotes: 0
Views: 201
Reputation: 3
I found this has been helpful:
#Python-decopule summary: store parameters in .ini or .env files;
#few options of manage(hiding) sensitive info
a. IAM role
b. Store Secrets using **Parameter Store**
c. Store Secrets using **Secrets Manager** - Current method
recommended by AWS
Upvotes: 0