forked from celkins/aws-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap-iam-cfn.yaml
206 lines (196 loc) · 6.81 KB
/
bootstrap-iam-cfn.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
AWSTemplateFormatVersion: '2010-09-09'
Description: Bootstrap IAM resources
Resources:
UserGroup:
Type: AWS::IAM::Group
Properties:
ManagedPolicyArns:
- arn:aws:iam::aws:policy/ReadOnlyAccess
Policies:
# https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_examples_aws_my-sec-creds-self-manage.html
- PolicyName: RequireMFA
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowViewAccountInfo
Effect: Allow
Action:
- iam:GetAccountPasswordPolicy
- iam:GetAccountSummary
- iam:ListVirtualMFADevices
Resource: '*'
- Sid: AllowManageOwnPasswords
Effect: Allow
Action:
- iam:ChangePassword
- iam:GetUser
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: AllowManageOwnAccessKeys
Effect: Allow
Action:
- iam:CreateAccessKey
- iam:DeleteAccessKey
- iam:ListAccessKeys
- iam:UpdateAccessKey
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: AllowManageOwnSigningCertificates
Effect: Allow
Action:
- iam:DeleteSigningCertificate
- iam:ListSigningCertificates
- iam:UpdateSigningCertificate
- iam:UploadSigningCertificate
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: AllowManageOwnSSHPublicKeys
Effect: Allow
Action:
- iam:DeleteSSHPublicKey
- iam:GetSSHPublicKey
- iam:ListSSHPublicKeys
- iam:UpdateSSHPublicKey
- iam:UploadSSHPublicKey
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: AllowManageOwnGitCredentials
Effect: Allow
Action:
- iam:CreateServiceSpecificCredential
- iam:DeleteServiceSpecificCredential
- iam:ListServiceSpecificCredentials
- iam:ResetServiceSpecificCredential
- iam:UpdateServiceSpecificCredential
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: AllowManageOwnVirtualMFADevice
Effect: Allow
Action:
- iam:CreateVirtualMFADevice
- iam:DeleteVirtualMFADevice
Resource: 'arn:aws:iam::*:mfa/${aws:username}'
- Sid: AllowManageOwnUserMFA
Effect: Allow
Action:
- iam:DeactivateMFADevice
- iam:EnableMFADevice
- iam:GetUser
- iam:ListMFADevices
- iam:ResyncMFADevice
Resource: 'arn:aws:iam::*:user/${aws:username}'
- Sid: DenyAllExceptListedIfNoMFA
Effect: Deny
NotAction:
- iam:CreateVirtualMFADevice
- iam:EnableMFADevice
- iam:GetUser
- iam:ListMFADevices
- iam:ListVirtualMFADevices
- iam:ResyncMFADevice
- sts:GetSessionToken
Resource: '*'
Condition:
BoolIfExists:
aws:MultiFactorAuthPresent: false
AdministratorGroup:
Type: AWS::IAM::Group
Properties:
Policies:
- PolicyName: RequireMFA
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: DenyAllIfNoMFA
Effect: Deny
Action: '*'
Resource: '*'
Condition:
BoolIfExists:
aws:MultiFactorAuthPresent: false
- PolicyName: AdministratorRole
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowAssumeAdministratorRole
Effect: Allow
Action: sts:AssumeRole
Resource: !GetAtt AdministratorRole.Arn
DeveloperGroup:
Type: AWS::IAM::Group
Properties:
Policies:
- PolicyName: RequireMFA
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: DenyAllIfNoMFA
Effect: Deny
Action: '*'
Resource: '*'
Condition:
BoolIfExists:
aws:MultiFactorAuthPresent: false
- PolicyName: DeveloperRole
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowAssumeDeveloperRole
Effect: Allow
Action: sts:AssumeRole
Resource: !GetAtt DeveloperRole.Arn
AdministratorRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
AWS:
- !Sub 'arn:aws:iam::${AWS::AccountId}:root'
Action: sts:AssumeRole
Condition:
Bool:
aws:MultiFactorAuthPresent: true
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AdministratorAccess
- arn:aws:iam::aws:policy/job-function/Billing
DeveloperRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
AWS:
- !Sub 'arn:aws:iam::${AWS::AccountId}:root'
Action: sts:AssumeRole
Condition:
Bool:
aws:MultiFactorAuthPresent: true
ManagedPolicyArns:
- arn:aws:iam::aws:policy/IAMReadOnlyAccess
- arn:aws:iam::aws:policy/PowerUserAccess
Outputs:
AdministratorGroup:
Description: ARN of the administrator group
Value: !GetAtt AdministratorGroup.Arn
Export:
Name: !Sub "${AWS::StackName}-AdministratorGroup"
AdministratorRole:
Description: ARN of the administrator role
Value: !GetAtt AdministratorRole.Arn
Export:
Name: !Sub "${AWS::StackName}-AdministratorRole"
DeveloperGroup:
Description: ARN of the developer group
Value: !GetAtt DeveloperGroup.Arn
Export:
Name: !Sub "${AWS::StackName}-DeveloperGroup"
DeveloperRole:
Description: ARN of the developer role
Value: !GetAtt DeveloperRole.Arn
Export:
Name: !Sub "${AWS::StackName}-DeveloperRole"
UserGroup:
Description: ARN of the user group
Value: !GetAtt UserGroup.Arn
Export:
Name: !Sub "${AWS::StackName}-UserGroup"