You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/sphinx-guides/source/developers/deployment.rst
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,10 @@ Create a ``.aws`` directory in your home directory (which is called ``~``) like
49
49
50
50
``mkdir ~/.aws``
51
51
52
+
We will be creating two plain text files in the ``.aws`` directory and it is important that these files do not end in ".txt" or any other extension. After creating the files, you can verify their names with the following command:
53
+
54
+
``ls ~/.aws``
55
+
52
56
Create a plain text file at ``~/.aws/config`` with the following content::
53
57
54
58
[default]
@@ -64,6 +68,8 @@ Create a plain text file at ``~/.aws/credentials`` with the following content::
64
68
65
69
Then update the file and replace the values for "aws_access_key_id" and "aws_secret_access_key" with your actual credentials by following the instructions at https://aws.amazon.com/blogs/security/wheres-my-secret-access-key/
66
70
71
+
If you are having trouble configuring the files manually as described above, see https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html which documents the ``aws configure`` command.
0 commit comments