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: CONTRIBUTING.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ If you've already completed these steps or you aren't making Terraform changes,
34
34
- Agree to the AWS Customer Agreement and Service Terms, complete the registration by clicking `"Create Account and Continue"`, verify your phone number via text or call, confirm your email address following the instructions in the confirmation email, and finally sign in to access your new AWS account using your email and password.
35
35
- Follow this [video guide](https://youtu.be/CjKhQoYeR4Q?si=78GhlDLV5zZu8qwh) for deeper explanations.
36
36
37
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
37
+
<sub>[Back to Top](#)</sub>
38
38
***
39
39
40
40
### **Login as root user & setup MFA**
@@ -47,7 +47,7 @@ If you've already completed these steps or you aren't making Terraform changes,
47
47
48
48
**Note:** Select the `us-west-2` region. It's not required for managing IAM resources, as they are global. However, it's advisable since our other resources are in the same region.
49
49
50
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
50
+
<sub>[Back to Top](#)</sub>
51
51
***
52
52
53
53
## **Setting up IAM and AWS CLI**
@@ -76,7 +76,7 @@ If you've already completed these steps or you aren't making Terraform changes,
76
76
```
77
77
**Note:** Password length must be 20 characters
78
78
79
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
79
+
<sub>[Back to Top](#)</sub>
80
80
***
81
81
-### **Create an IAM Group**
82
82
@@ -85,7 +85,7 @@ If you've already completed these steps or you aren't making Terraform changes,
85
85
```bash
86
86
aws iam create-group --group-name AdminGroup
87
87
```
88
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
88
+
<sub>[Back to Top](#)</sub>
89
89
***
90
90
-### **Attach IAM user to IAM group**
91
91
@@ -99,7 +99,7 @@ If you've already completed these steps or you aren't making Terraform changes,
99
99
```bash
100
100
aws iam add-user-to-group --group-name AdminGroup --user-name octocat
101
101
```
102
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
102
+
<sub>[Back to Top](#)</sub>
103
103
***
104
104
-### **Attach `AdministratorAccess` policy to IAM group**
105
105
@@ -108,7 +108,7 @@ If you've already completed these steps or you aren't making Terraform changes,
108
108
```bash
109
109
aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/AdministratorAccess --group-name AdminGroup
110
110
```
111
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
111
+
<sub>[Back to Top](#)</sub>
112
112
***
113
113
- Log in as the newly created user instead of continuing to log in as the root user.
114
114
-### **Generating Access Keys for AWS CLI**
@@ -123,13 +123,13 @@ If you've already completed these steps or you aren't making Terraform changes,
123
123
```bash
124
124
nano access_key.json
125
125
```
126
-
<sub>[Back to Table of Contents](#table-of-contents)</sub>
126
+
<sub>[Back to Top](#)</sub>
127
127
***
128
128
The below steps must be completed in order to authenticate to AWS locally via the command line interface (CLI):
0 commit comments