amazon web services - AWS Credentials folder location -
i trying install amazon web services python sdk. cannot find ~/.aws/credentials folder on machine though.
this page using reference: https://aws.amazon.com/developers/getting-started/python/
it says location on windows should like: c:\users\user_name.aws\credentials
i've done pip installs boto, boto3, , awscli. there else need install credentials folder?
according link posted...
create credentials file @ ~/.aws/credentials (c:\users\user_name.aws\credentials windows users) , save following lines after replacing underlined values own.
with contents
[default] aws_access_key_id = your_access_key_id aws_secret_access_key = your_secret_access_key
there's nothing need install, create file, , put in. (obviously swapping out your_access_key_id
actual access key, , your_secret_access_key
actual secret key ;) )
Comments
Post a Comment